source: consulta_publica/consulta/templates/consulta.base.multi.table.pdf.html @ 59f3e60

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

Agregado el reporte por sector

  • Propiedad mode establecida a 100644
File size: 508 octetos
Línea 
1<table class="table">
2    <table class="table">
3    {% if caption %}
4        <caption><h4 class="text-center">{{caption}}</h4></caption>
5    {% endif %}
6    <thead>
7        <tr>
8            <th>{{title_1}}</th>
9            <th>{{title_2}}</th>
10        </tr>
11    </thead>
12    <tbody class="text-center">
13        {% for item in data %}
14            <tr>
15            {% for value in item%}
16                <td>{{ value }}</td>
17            {% endfor %}
18            </tr>
19        {% endfor %}
20    </tbody>
21</table>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.