mirror of https://github.com/interlegis/sapl.git
Browse Source
Adicionar rel. das vot. nominais - mat ordem dia Adicionar rel. das vot. nominais - PDFpull/2573/head
João Rodrigues
6 years ago
committed by
Edward
6 changed files with 230 additions and 9 deletions
@ -0,0 +1,28 @@ |
|||
<fieldset> |
|||
<legend>Votações Nominais - Matérias do Expediente</legend> |
|||
</br> |
|||
<table class="table table-striped table-hover"> |
|||
<thead> |
|||
<tr> |
|||
<th>Matéria</th> |
|||
<th>Votos</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for m in votos_nominais_materia_expediente %} |
|||
<tr> |
|||
<td>{{ m.titulo }}</td> |
|||
{% if m.votos %} |
|||
<td> |
|||
{% for v in m.votos %} |
|||
<li><b>{{v.parlamentar}}</b> - {{v.voto}}</li> |
|||
{% endfor %} |
|||
</td> |
|||
{% else %} |
|||
<td><b>Matéria não votada</b></td> |
|||
{% endif %} |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
</fieldset> |
@ -0,0 +1,28 @@ |
|||
<fieldset> |
|||
<legend>Votações Nominais - Matérias da Ordem do Dia</legend> |
|||
</br> |
|||
<table class="table table-striped table-hover"> |
|||
<thead> |
|||
<tr> |
|||
<th>Matéria</th> |
|||
<th>Votos</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for m in votos_nominais_materia_ordem_dia %} |
|||
<tr> |
|||
<td>{{ m.titulo }}</td> |
|||
{% if m.votos %} |
|||
<td> |
|||
{% for v in m.votos %} |
|||
<li><b>{{v.parlamentar}}</b> - {{v.voto}}</li> |
|||
{% endfor %} |
|||
</td> |
|||
{% else %} |
|||
<td><b>Matéria não votada</b></td> |
|||
{% endif %} |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
</fieldset> |
Loading…
Reference in new issue