Sistema de Apoio ao Processo Legislativo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
1001 B

<fieldset>
</br>
<strong>Matérias da Ordem do Dia: </strong>
</br></br>
{% for m in materias_ordem %}
<fieldset style="border-top: 1px solid black;">
<b>{{m.numero}} - {{m.titulo}} </b></br>
<b>Turno:</b>{{m.turno}}</br>
<b>Autor: </b>{{ m.autor|length|pluralize:"es" }}: {{ m.autor|join:', ' }}
{% if m.numero_protocolo %}
<b>Número de Protocolo:</b> {{ m.numero_protocolo }}
{% endif %}
{% if m.numero_processo %}
<b>Processo:</b> {{ m.numero_processo }}
{% endif %}
<p><b>Descrição:</b> {{m.ementa|safe}}</p>
<b>Resultado:</b> {{m.resultado}} {{m.resultado_observacao}}
<dl>
<p><b>Tipo:</b> {{m.tipo_votacao}}</p>
<dt>Sim:{{m.voto_sim}}</dt>
<dt>Não:{{m.voto_nao}}</dd>
<dt>Abstenções:{{m.voto_abstencoes}}</dt>
</dl>
{% if m.voto_nominal%}
<b>Votos Nominais</b>
<ul>
{% for voto in m.voto_nominal %}
<li>{{voto.0}} - {{voto.1}}</li>
{% endfor %}
</ul>
{% endif %}
</fieldset>
{% endfor %}
</fieldset>