Files
budget/src/Template/WlDstTyp/add.ctp
2018-04-02 08:23:14 +02:00

27 lines
830 B
PHP

<?php
/**
* @var \App\View\AppView $this
* @var \App\Model\Entity\WlDstTyp $wlDstTyp
*/
?>
<nav class="large-3 medium-4 columns" id="actions-sidebar">
<ul class="side-nav">
<li class="heading"><?= __('Actions') ?></li>
<li><?= $this->Html->link(__('List Wl Dst Typ'), ['action' => 'index']) ?></li>
</ul>
</nav>
<div class="wlDstTyp form large-9 medium-8 columns content">
<?= $this->Form->create($wlDstTyp) ?>
<fieldset>
<legend><?= __('Add Wl Dst Typ') ?></legend>
<?php
echo $this->Form->control('key_value');
echo $this->Form->control('short');
echo $this->Form->control('name');
echo $this->Form->control('modfied');
?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
</div>