main
Last change
on this file was
42095c5,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Insert password admin visible
|
-
Property mode set to
100644
|
File size:
743 bytes
|
Line | |
---|
1 | {{extend 'layout.html'}} |
---|
2 | <link href="{{=URL('static', 'css/setup.css')}}" rel="stylesheet" type="text/css" /> |
---|
3 | |
---|
4 | <style type="text/css"> |
---|
5 | |
---|
6 | .form_config { |
---|
7 | width: 46%; |
---|
8 | } |
---|
9 | </style> |
---|
10 | |
---|
11 | <script type="text/javascript"> |
---|
12 | window.onload = function() { |
---|
13 | modify_del_selected_button_to_table(); |
---|
14 | |
---|
15 | }; |
---|
16 | |
---|
17 | function modify_del_selected_button_to_table() { |
---|
18 | |
---|
19 | var div_remove_selected = document.getElementsByClassName("web2py_table_selectable_actions")[0]; |
---|
20 | var button_remove_selected = div_remove_selected.children[0] |
---|
21 | button_remove_selected.setAttribute("value", "Eliminar Seleccionados"); |
---|
22 | } |
---|
23 | </script> |
---|
24 | |
---|
25 | <div class="container_setup"> |
---|
26 | <div class="menu_config"> |
---|
27 | {{include 'setup/menu.html'}} |
---|
28 | </div> |
---|
29 | |
---|
30 | <div class="form_config"> |
---|
31 | {{=grid}} |
---|
32 | </div> |
---|
33 | </div> |
---|
34 | |
---|
Note: See
TracBrowser
for help on using the repository browser.