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.
27 lines
739 B
27 lines
739 B
<fieldset>
|
|
<p align="justify">
|
|
{% 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 %}
|
|
{% endif %}
|
|
</p>
|
|
</fieldset>
|