2 <div class="box menubox">
4 <a href="#" id="toggle-admin-actions">Actions</a>
7 <div class="block" id="admin-actions">
8 <h5><?php echo __('Comments', true); ?></h5>
10 <li><?php echo $this->Html->link(__('Delete', true), array('action' => 'delete', $this->Form->value('Comment.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $this->Form->value('Comment.id'))); ?></li> <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Comments', true)), array('action' => 'index'));?></li> </ul>
14 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Translations', true)), array('controller' => 'translations', 'action' => 'index')); ?> </li>
19 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Identifiers', true)), array('controller' => 'identifiers', 'action' => 'index')); ?> </li>
24 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Users', true)), array('controller' => 'users', 'action' => 'index')); ?> </li>
32 <h2 id="page-heading"><?php printf(__('Edit %s', true), __('Comment', true)); ?></h2>
34 <div class="comments form">
35 <?php echo $this->Form->create('Comment');?>
37 <legend><?php printf(__('Comment # %s', true), $this->Form->value('Comment.id')); ?></legend>
39 echo $this->Form->input('id');
40 echo $this->Form->input('translation_id');
41 echo $this->Form->input('identifier_id');
42 echo $this->Form->input('user_id');
43 echo $this->Form->input('comment');
47 <?php echo $this->Form->end(__('Submit', true));?>
51 <div class="clear"></div>