35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
<?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>
|