Initial commit
This commit is contained in:
26
src/Template/WlDstTyp/add.ctp
Normal file
26
src/Template/WlDstTyp/add.ctp
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user