pictcode / app / View / users / edit.ctp @ d6c3d8de
履歴 | 表示 | アノテート | ダウンロード (1.252 KB)
1 | d6c3d8de | root | <div class="users form"> |
---|---|---|---|
2 | <?php echo $this->Form->create('User'); ?> |
||
3 | <fieldset> |
||
4 | <legend><?php echo __('Edit User'); ?></legend> |
||
5 | <?php |
||
6 | echo $this->Form->input('id' ); |
||
7 | echo $this->Form->input('login_id',array( 'type' => 'text')); |
||
8 | echo $this->Form->input('password'); |
||
9 | echo $this->Form->input('user_flg'); |
||
10 | echo $this->Form->input('status'); |
||
11 | ?> |
||
12 | </fieldset> |
||
13 | <?php echo $this->Form->end(__('Submit')); ?> |
||
14 | </div> |
||
15 | <div class="actions"> |
||
16 | <h3><?php echo __('Actions'); ?></h3> |
||
17 | <ul> |
||
18 | |||
19 | <li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('User.id')), array('confirm' => __('Are you sure you want to delete # %s?', $this->Form->value('User.id')))); ?></li> |
||
20 | <li><?php echo $this->Html->link(__('List Users'), array('action' => 'index')); ?></li> |
||
21 | <li><?php echo $this->Html->link(__('List Logins'), array('controller' => 'logins', 'action' => 'index')); ?> </li> |
||
22 | <li><?php echo $this->Html->link(__('New Login'), array('controller' => 'logins', 'action' => 'add')); ?> </li> |
||
23 | <li><?php echo $this->Html->link(__('List Programs'), array('controller' => 'programs', 'action' => 'index')); ?> </li> |
||
24 | <li><?php echo $this->Html->link(__('New Program'), array('controller' => 'programs', 'action' => 'add')); ?> </li> |
||
25 | </ul> |
||
26 | </div> |