OSDN Git Service

Merge branch 'master' of cake_67@git.sourceforge.jp:/gitroot/trpgtools-onweb/cake...
[trpgtools-onweb/cake-frame.git] / app / views / characters / edit.ctp
1 <div class="characters form">
2 <?php echo $form->create('Character');?>
3         <fieldset>
4                 <legend><?php __('Edit Character');?></legend>
5         <?php
6                 echo $form->input('id');
7                 echo $form->input('system_id');
8                 echo $form->input('user_id');
9                 echo $form->input('name');
10                 echo $form->input('image_filename');
11                 echo $form->input('notes');
12                 echo $form->input('public_flag');
13                 echo $form->input('status_2');
14                 echo $form->input('sort_order');
15                 echo $form->input('deleted');
16                 echo $form->input('deleted_date');
17         ?>
18         </fieldset>
19 <?php echo $form->end('Submit');?>
20 </div>
21 <div class="actions">
22         <ul>
23                 <li><?php echo $html->link(__('Delete', true), array('action' => 'delete', $form->value('Character.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Character.id'))); ?></li>
24                 <li><?php echo $html->link(__('List Characters', true), array('action' => 'index'));?></li>
25                 <li><?php echo $html->link(__('List Systems', true), array('controller' => 'systems', 'action' => 'index')); ?> </li>
26                 <li><?php echo $html->link(__('New System', true), array('controller' => 'systems', 'action' => 'add')); ?> </li>
27                 <li><?php echo $html->link(__('List Users', true), array('controller' => 'users', 'action' => 'index')); ?> </li>
28                 <li><?php echo $html->link(__('New User', true), array('controller' => 'users', 'action' => 'add')); ?> </li>
29         </ul>
30 </div>