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 __('Votes', true); ?></h5>
10 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Votes', 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), __('Users', true)), array('controller' => 'users', 'action' => 'index')); ?> </li>
27 <h2 id="page-heading"><?php printf(__('Add %s', true), __('Vote', true)); ?></h2>
29 <div class="votes form">
30 <?php echo $this->Form->create('Vote');?>
32 <legend><?php printf(__('Vote', true)); ?></legend>
34 echo $this->Form->input('translation_id');
35 echo $this->Form->input('user_id');
38 <?php echo $this->Form->end(__('Submit', true));?>
42 <div class="clear"></div>