mirror of https://github.com/interlegis/sapl.git
Rogério Frá
6 years ago
committed by
Edward
8 changed files with 65 additions and 48 deletions
@ -1,27 +1,36 @@ |
|||
<fieldset> |
|||
<p align="justify"> |
|||
{% if materia_expediente %} |
|||
{% if materia_expediente %} |
|||
<strong>Matérias do Expediente: </strong> |
|||
{% for m in materia_expediente %} |
|||
<b>{{m.numero}} - {{m.titulo}}</b> |
|||
|
|||
{% if m.turno %} |
|||
Turno: {{m.turno}} |
|||
{% endif %} |
|||
|
|||
Autor{{ m.autor|length|pluralize:"es" }}: {{ m.autor|join:', ' }} |
|||
|
|||
{% if m.numero_protocolo %} |
|||
Número de Protocolo: {{ m.numero_protocolo }} |
|||
{% endif %} |
|||
|
|||
{% if m.numero_processo %} |
|||
Processo: {{ m.numero_processo }} |
|||
{% endif %} |
|||
|
|||
{{m.ementa|safe}} |
|||
{{m.resultado}} {{m.resultado_observacao}}</td> |
|||
{% endfor %} |
|||
{% for m in materia_expediente %} |
|||
<b>{{m.numero}} - {{m.titulo}}</b>, |
|||
{{m.ementa|safe}} |
|||
Autor{{ m.autor|length|pluralize:"es" }}: {{ m.autor|join:', ' }}, |
|||
{% if m.numero_protocolo %} |
|||
Número de Protocolo: {{ m.numero_protocolo }}, |
|||
{% endif %} |
|||
{% if m.numero_processo %} |
|||
Processo: {{ m.numero_processo }}, |
|||
{% endif %} |
|||
{%if m.turno %} |
|||
Turno: {{m.turno}}, |
|||
{%endif %} |
|||
{%if m.tipo_votacao %} |
|||
Tipo: {{m.tipo_votacao}}, |
|||
Sim: {{ m.voto_sim }}, |
|||
Não: {{ m.voto_nao }}, |
|||
Abstenções: {{m.voto_abstencoes}}, |
|||
{% endif %} |
|||
Resultado:</b> {{m.resultado}} |
|||
{% if m.resultado_observacao %} - {{m.resultado_observacao}} {% endif %} |
|||
{% if m.voto_nominal%} |
|||
<b>Votos Nominais :</b> |
|||
{% for voto in m.voto_nominal %} |
|||
{{voto.0}} - {{voto.1}} |
|||
{% if not forloop.last %} ; {% endif %} |
|||
{% endfor %} |
|||
{% endif %} |
|||
{% endfor %} |
|||
{% endif %} |
|||
</p> |
|||
</fieldset> |
Loading…
Reference in new issue