/views/tests/add.ctp
http://openbook2-0.googlecode.com/ · Unknown · 19 lines · 18 code · 1 blank · 0 comment · 0 complexity · 7e2b5e6265fe93336bf31e300b9b14ba MD5 · raw file
- <div class="tests form">
- <?php echo $this->Form->create('Test');?>
- <fieldset>
- <legend><?php __('Add Test'); ?></legend>
- <?php
- echo $this->Form->input('name');
- echo $this->Form->input('email');
- echo $this->Form->input('description');
- ?>
- </fieldset>
- <?php echo $this->Form->end(__('Submit', true));?>
- </div>
- <div class="actions">
- <h3><?php __('Actions'); ?></h3>
- <ul>
-
- <li><?php echo $this->Html->link(__('List Tests', true), array('action' => 'index'));?></li>
- </ul>
- </div>