source: consulta_publica/consulta/templates/consulta.pdf.template.html @ 59f3e60

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

Modificados gráficos y filtros de reportes y estadísticas

  • Propiedad mode establecida a 100644
File size: 3.1 KB
Línea 
1{% load staticfiles %}
2<!DOCTYPE html>
3<html>
4    <head>
5        <meta charset='UTF-8'>
6          <style type="text/css">
7              #content{
8                  padding: 15px 15px 15px 15px;
9              }
10              .text-center {
11                  text-align: center;
12              }
13              .table {
14                    width: 100%;
15                    max-width: 100%;
16                    margin-bottom: 20px;
17              }
18              .table td, .table th {
19                    padding: 8px;
20                    line-height: 1.42857143;
21                    vertical-align: top;
22                    border:  1px solid #ddd;
23              }
24          </style>
25    </head>
26    <body>
27        <div id="content">
28            <img src="NAVBAR_LOGO.png" />
29            <h1 class="text-center">Reporte Cuantitativo</h1>
30            <img src="CINTILLO_1.png" />
31            <div>
32                <p><b>Pregunta: </b>{{pregunta_texto}}<p>
33                {% if objetivo_texto %}
34                    <p><b>Objetivo: </b>{{objetivo_texto}}<p>
35                {% endif %}
36            </div>
37            {% if lugar > 0 %}
38                {% include 'consulta.base.table.pdf.html' with title_1='Ubicación' title_2='Participantes' texto=ubicacion valor=lugar %}
39            {% endif %}
40            {% if estados %}
41                {% include 'consulta.base.multi.table.pdf.html' with title_1='Ubicación' title_2='Participantes' data=estados caption='Participación por todos los estados' %}
42            {% endif %}
43            {% if municipios %}
44                {% include 'consulta.base.multi.table.pdf.html' with title_1='Municipios' title_2='Participantes' data=municipios caption='Participación por todos los municipios' %}
45            {% endif %}
46            {% if parroquias %}
47                {% include 'consulta.base.multi.table.pdf.html' with title_1='Parroquias' title_2='Participantes' data=parroquias caption='Participación por todos los municipios' %}
48            {% endif %}
49            {% if sector >= 0 %}
50                {% include 'consulta.base.table.pdf.html' with title_1='Sector' title_2='Participantes' texto=sector_texto valor=sector caption='Participación por sector' %}
51            {% endif %}
52            {% if sector_trabajador >= 0 %}
53                {% include 'consulta.base.table.pdf.html' with title_1='Sector' title_2='Participantes' texto=sector_trabajador_texto valor=sector_trabajador caption='Participación por sector trabajador' %}
54            {% endif %}
55            {% if sector_estudiante >= 0 %}
56                {% include 'consulta.base.table.pdf.html' with title_1='Sector' title_2='Participantes' texto=sector_trabajador_texto valor=sector_trabajador caption='Participación por sector trabajador' %}
57            {% endif %}
58            {% if sectores %}
59                {% include 'consulta.base.multi.table.pdf.html' with title_1='Ubicación' title_2='Participantes' texto=sector_trabajador_texto valor=sector_trabajador data=sectores caption='Participación por todos los sectores' %}
60            {% endif %}
61            <p class="text-center"><b>Respuestas totales emitidas por Usuario: </b>{{respuestas}}</p>
62        </div>
63    </body>
64</html>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.