Merge branch 'fixes' into main/rendor-staging
[ryzomcore.git] / web / public_php / webtt / app / views / identifiers / edit.ctp
blob6d4155106965e3e37c7b714de0d80562a7f754b2
1 <div class="grid_3">
2         <div class="box menubox">
3                                 <h2>
4                         <a href="#" id="toggle-admin-actions">Actions</a>
5                 </h2>
6                 <div class="inbox">
7                 <div class="block" id="admin-actions">
8                         <h5><?php echo __('Identifiers', true); ?></h5>
9                         <ul class="menu">
10                                                                         <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Identifiers', true)), array('action' => 'index'));?></li>                     </ul>
11                         
12                         <h5>Languages</h5>
13                         <ul class="menu">
14                                 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Languages', true)), array('controller' => 'languages', 'action' => 'index')); ?> </li>
15                         </ul>
17                         <h5>Translations</h5>
18                         <ul class="menu">
19                                 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('Translations', true)), array('controller' => 'translations', 'action' => 'index')); ?> </li>
20                                 <li><?php echo $this->Html->link(sprintf(__('New %s', true), __('Translation', true)), array('controller' => 'translations', 'action' => 'add')); ?> </li>
21                         </ul>
23                         <h5>File Identifiers</h5>
24                         <ul class="menu">
25                                 <li><?php echo $this->Html->link(sprintf(__('List %s', true), __('File Identifiers', true)), array('controller' => 'file_identifiers', 'action' => 'index')); ?> </li>
26                         </ul>
27                 </div>
28                 </div>
29         </div>
31         <?php echo $this->element('neighbours'); ?></div>
33 <div class="grid_13">
34     <h2 id="page-heading"><?php printf(__('Edit %s', true), __('Identifier', true)); ?></h2>
35     
36         <div class="identifiers form">
37         <?php echo $this->Form->create('Identifier');?>
38                 <fieldset>
39                                                 <legend><?php printf(__('Identifier # %s', true), $this->Form->value('Identifier.id')); ?></legend>
40                                         <?php
41                 echo $this->Form->input('id');
42                 echo $this->Form->input('language_id');
43                 echo $this->Form->input('translation_index');
44                 echo $this->Form->input('identifier');
45                 echo $this->Form->input('arguments');
46                 echo $this->Form->input('reference_string');
47                 echo $this->Form->input('translated');
48         ?>
49                 </fieldset>
50         <?php echo $this->Form->end(__('Submit', true));?>
51         </div>
53 </div>
54 <div class="clear"></div>