mirror of https://github.com/interlegis/sapl.git
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.
47 lines
1.2 KiB
47 lines
1.2 KiB
|
|
{% load common_tags %}
|
|
{% if materias_ordem %}
|
|
<fieldset>
|
|
<legend>Matérias da Ordem do Dia</legend>
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Matéria</th>
|
|
<th>Ementa</th>
|
|
<th>Resultado da Votação</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for m in materias_ordem %}
|
|
<tr>
|
|
<td>
|
|
{{m.numero}} - {{m.titulo}}
|
|
|
|
{% if m.turno %}
|
|
<br />
|
|
<b>Turno:</b> {{m.turno}}
|
|
{% endif %}
|
|
|
|
<br />
|
|
|
|
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
|
|
|
|
{% if m.numero_protocolo %}
|
|
<br />
|
|
<b>Número de Protocolo:</b> {{ m.numero_protocolo }}
|
|
{% endif %}
|
|
|
|
{% if m.numero_processo %}
|
|
<br />
|
|
<b>Processo:</b> {{ m.numero_processo }}
|
|
{% endif %}
|
|
</td>
|
|
<td>{{m.ementa|dont_break_out}}</b><br/>{{m.observacao|dont_break_out}}</td>
|
|
<td><b>{{m.resultado}}</b><br/>{{m.resultado_observacao}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
<br /><br /><br />
|
|
{% endif %}
|