| 12345678910111213141516171819202122232425262728 |
- <div class="page form">
- <h2><?php echo __('Add %s', __('Qurl')); ?></h2>
- <?php echo $this->Form->create('Qurl');?>
- <fieldset>
- <legend><?php echo __('Add %s', __('Qurl')); ?></legend>
- <?php
- echo $this->Form->input('url');
- echo $this->Form->input('title');
- echo $this->Form->input('note', ['type' => 'textarea']);
- echo $this->Form->input('active');
- ?>
- </fieldset>
- <fieldset>
- <legend><?php echo __('Internal details')?></legend>
- <?php
- echo $this->Form->input('comment', ['type' => 'textarea']);
- ?>
- </fieldset>
- <?php echo $this->Form->submit(__('Submit')); echo $this->Form->end();?>
- </div>
- <div class="actions">
- <ul>
- <li><?php echo $this->Html->link(__('List %s', __('Qurls')), ['action' => 'index']);?></li>
- </ul>
- </div>
|