source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/applications/admin/views/default/edit_language.html

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 836 bytes
Line 
1{{extend 'layout.html'}}
2<script>
3function delkey(id) {
4  jQuery('#'+id).hide();
5  jQuery('#'+id+' INPUT').val(String.fromCharCode(127));
6  jQuery('#'+id+' TEXTAREA').val(String.fromCharCode(127));
7  return false;
8}
9function hideShowTranslated(){
10  jQuery(".translated").closest("div.row-fluid").toggle();
11}
12</script>
13
14{{block sectionclass}}edit_language{{end}}
15<!-- begin "edit_language" block -->
16<h2>{{=T('Editing Language file')}} "{{=filename}}"</h2>
17<div class="controls">
18<a class="button btn" href="#" onclick="hideShowTranslated(this);">
19<span>{{=T('Hide/Show Translated strings')}}</span>
20</a>
21</div>
22<div class="languageform">
23  {{=form}}
24</div>
25<button class="btn" style="position:fixed; right:10px; bottom: 10px;" onclick="jQuery('form input[type=submit]').click()">Save Changes</button>
26<!-- end "edit_language" block -->
Note: See TracBrowser for help on using the repository browser.