Initial commit

This commit is contained in:
2018-04-02 08:23:14 +02:00
commit 9b83d1dc09
151 changed files with 20566 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
/**
* @var \App\View\AppView $this
* @var \App\Model\Entity\WlBudget $wlBudget
*/
?>
<nav class="large-3 medium-4 columns" id="actions-sidebar">
<ul class="side-nav">
<li class="heading"><?= __('Actions') ?></li>
<li><?= $this->Form->postLink(
__('Delete'),
['action' => 'delete', $wlBudget->id],
['confirm' => __('Are you sure you want to delete # {0}?', $wlBudget->id)]
)
?></li>
<li><?= $this->Html->link(__('List Wl Budgets'), ['action' => 'index']) ?></li>
<li><?= $this->Html->link(__('List Budget'), ['controller' => 'Budget', 'action' => 'index']) ?></li>
<li><?= $this->Html->link(__('New Budget'), ['controller' => 'Budget', 'action' => 'add']) ?></li>
</ul>
</nav>
<div class="wlBudgets form large-9 medium-8 columns content">
<?= $this->Form->create($wlBudget) ?>
<fieldset>
<legend><?= __('Edit Wl Budget') ?></legend>
<?php
echo $this->Form->control('wl_werteliste_nr');
echo $this->Form->control('wl_kurz_bezeichnung');
echo $this->Form->control('schulart');
echo $this->Form->control('modfied');
?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
</div>