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