source: ecoalba/templates/menu.html @ 2b75c15

20130819
Last change on this file since 2b75c15 was 2b75c15, checked in by jbecerra <jbecerra@…>, 11 years ago

Agregas pantallas de complementariedad, reportes y listado (Erwin), Agregada funcionalidad carga masiva (Falta agregar algoritmos para obtener datos pasa las fichas), algunos ajustes de Look & Feel

  • Property mode set to 100644
File size: 3.3 KB
Line 
1{% load i18n %}
2<div id="menu_3" class="mbmenu">
3        <!-- <a data-type="text">
4        <form>
5                <img src="{{ MEDIA_URL }}imagenes/browser.png" alt="img" style="position:absolute;margin-top:-20px; margin-left:-25px;margin-bottom:10px"/>
6                <br/>
7                <input id="myInput" type="text" name="tuoTesto" value="" />
8                <input type="button" name="tuoTesto" value="Enviar" onclick="$.fn.removeMbMenu($.mbMenu.options.actualOpenedMenu,true);"/>
9                <table>
10                        <tr>
11                                <td>
12                                <input type="checkbox" checked value="aaa"/>
13                                </td><td>checkbox 1</td>
14                        </tr>
15                        <tr>
16                                <td>
17                                <input type="checkbox" value="aaa"/>
18                                </td><td>checkbox 1</td>
19                        </tr>
20                        <tr>
21                                <td>
22                                <input type="checkbox" value="aaa"/>
23                                </td><td>checkbox 2</td>
24                        </tr>
25                        <tr>
26                                <td>
27                                <input type="checkbox" value="aaa"/>
28                                </td><td>checkbox 3</td>
29                        </tr>
30                </table>
31                <br>
32                <br/>
33                * Los valores de los campos no son reservados si cierra el menú!
34        </form> </a> -->
35        <a data-type="separator"> </a>
36        {% if user.is_superuser %}<a href="{{ BASE_URL}}/admin/auth/user/" class="{ img: 'iconDone.png'}">{% trans "usuarios" %}</a>{% endif %}
37        <a id="aaa" class="{menu:'sub_menu_idioma'}"  >{% trans "idioma" %}</a>
38</div>
39<div id="sub_menu_idioma" class="mbmenu">
40        <a class="{action: 'document.formlang.language.value=\'en\';document.formlang.submit();', img: 'session-interrupteur-icone-8166-48.png'}">{% trans "ingles" %}</a>
41        <a class="{action: 'document.formlang.language.value=\'es\';document.formlang.submit();', img: 'session-interrupteur-icone-8166-48.png'}">{% trans "español" %}</a>
42</div>
43
44<!-- end menus -->
45
46<div id="banner">
47        {% include "header.html" %}
48</div>
49
50<div style="text-align: right; font-size: 12px">
51        {% blocktrans with user.username as username and user.last_login|date:"D, d M Y \a\t h:i:s A" as last_login %}
52                Bienvenido de nuevo {{ username }}. Usted se logueo al sistema por última vez el {{ last_login }}
53        {% endblocktrans %}.
54</div>
55
56<table id="menu_container">
57        <tr>
58                <td style="width: 100%">
59                        <table class="myMenu rootVoices" style="border: 0; padding: 0; margin: 0; background-color: #FFF">
60                                <tr>
61                                        <td style="width: 10%" class="rootVoice {menu: 'empty'}"><a href="{{ BASE_URL }}/"><i class="icon-home"></i>&nbsp;{% trans "inicio" %}</a></td>
62                                        <td style="width: 10%" class="rootVoice {menu: 'empty'}"><a href="{{BASE_URL}}/mapa">{% trans "mapa" %}</a></td>
63                                        <td style="width: 20%" class="rootVoice {menu: 'empty'}"><a href="{{BASE_URL}}/flujo">{% trans "flujo_comercial" %}</a></td>
64                                        <td style="width: 10%" class="rootVoice {menu: 'empty'}"><a href="{{BASE_URL}}/mapa/reporte">{% trans "listado" %}</a></td>
65                                        <td style="width: 10%" class="rootVoice {menu: 'empty'}"><a href="{{BASE_URL}}/reportes">{% trans "reportes" %}</a></td>
66                                        <td style="width: 10%" class="rootVoice {menu: 'empty'}"><a href="{{BASE_URL}}/convenios/convenios">{% trans "Convenios" %}</a></td>
67                                        <td style="width: 15%" class="rootVoice {menu: 'empty'}"><a href="{{BASE_URL}}/complementariedad">{% trans "complementariedad" %}</a></td>
68                                        <td style="width: 15%" class="rootVoice {menu: 'menu_3', disabled:false}" ><a href="#">{% trans "administracion" %}</a></td>                                                                   
69                                        <td style="width: 10%" class="rootVoice {menu: 'empty'}"><a href="{{ BASE_URL }}/signout" title="Salir del Sistema"><i class="icon-signout"></i>&nbsp;{% trans "salir" %}</a></td>
70                                </tr>
71                        </table>
72                </td>
73        </tr>
74</table>
Note: See TracBrowser for help on using the repository browser.