CakeAccounting/templates/DeAccountTemplates/add.php

29 lines
956 B
PHP
Raw Normal View History

2025-08-09 21:07:39 +00:00
<?php
/**
* @var \App\View\AppView $this
* @var \Cake\Datasource\EntityInterface $deAccountTemplate
*/
?>
<div class="row">
<aside class="column">
<div class="side-nav">
<h4 class="heading"><?= __('Actions') ?></h4>
<?= $this->Html->link(__('List De Account Templates'), ['action' => 'index'], ['class' => 'side-nav-item']) ?>
</div>
</aside>
<div class="column column-80">
<div class="deAccountTemplates form content">
<?= $this->Form->create($deAccountTemplate) ?>
<fieldset>
<legend><?= __('Add De Account Template') ?></legend>
<?php
echo $this->Form->control('name');
echo $this->Form->control('deleted', ['empty' => true]);
?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
</div>
</div>
</div>