source: consulta_publica/base/templates/base.template.html @ cdd72e5

baseconstituyenteestudiantesgeneralplan_patriasala
Last change on this file since cdd72e5 was cdd72e5, checked in by rudmanmrrod <rudman22@…>, 7 años ago

Agregado template de errores, logeo de usuarios y opción de selección simple y múltiple en las consultas

  • Propiedad mode establecida a 100644
File size: 1.1 KB
Línea 
1{% load staticfiles %}
2<!DOCTYPE html>
3<html>
4    <head>
5        <meta charset='UTF-8'>
6        <title>{% block title %}Consulta Pública{% endblock %}</title>
7        <link rel="stylesheet" type="text/css" href="{% static "bootstrap-3.3.7/css/bootstrap.min.css" %}"/>
8        <link rel="stylesheet" type="text/css" href="{% static "css/style.css" %}"/>
9        <link rel="stylesheet" type="text/css" href="{% static "icheck/skins/line/_all.css" %}"/>
10       
11        <script src="{% static "jquery/jquery-3.1.0.min.js" %}"></script>
12        <script src="{% static "bootstrap-3.3.7/js/bootstrap.min.js" %}"></script>
13        <script src="{% static "js/bootbox.min.js" %}"></script>
14        <script src="{% static "js/funciones.js" %}"></script>
15        <script src="{% static "icheck/icheck.js" %}"></script>
16        {% block headScript %}{%endblock%}
17    </head>
18    <body>
19        <div class="container">
20            {% block content %}{% endblock %}
21        </div>
22        {% block modals %}{% endblock %}
23    </body>
24    {% block extraJs %}{%endblock%}
25    {% include 'base.alert.messages.html' %}
26</html>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.