Linux multi-monitor fullscreen support
[ryzomcore.git] / web / public_php / webtt / app / views / languages / edit.ctp
blob1d3927ff389f1978e04f9cc5617b4a305c0fe9e2
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 __('Languages', true); ?></h5>
9                         <ul class="menu">
10                                                                         <li><?php echo $this->Html->link(sprintf(__('List all %s', true), __('Languages', true)), array('action' => 'index'));?></li>                   </ul>
11                         
12                         <h5>Translation Files</h5>
13                         <ul class="menu">
14                                 <li><?php echo $this->Html->link(sprintf(__('List related %s', true), __('Translation Files', true)), array('controller' => 'translation_files', 'action' => 'index', 'language_id' => $language['Language']['id'])); ?> </li>
15                                 <li><?php echo $this->Html->link(sprintf(__('List all %s', true), __('Translation Files', true)), array('controller' => 'translation_files', 'action' => 'index')); ?> </li>
16                         </ul>
17                 </div>
18                 </div>
19         </div>
20 </div>
22 <div class="grid_13">
23     <h2 id="page-heading"><?php printf(__('Edit %s', true), __('Language', true)); ?></h2>
24     
25         <div class="languages form">
26         <?php echo $this->Form->create('Language');?>
27                 <fieldset>
28                                                 <legend><?php printf(__('Language # %s', true), $this->Form->value('Language.id')); ?></legend>
29                                         <?php
30                 echo $this->Form->input('id');
31                 echo $this->Form->input('name');
32                 echo $this->Form->input('code');
33         ?>
34                 </fieldset>
35                 <div class="box">
36 <?php echo $this->Form->end(__('Submit', true));?>
37 </div>  </div>
39 </div>
40 <div class="clear"></div>