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.
 
 
 
 
 

13 lines
390 B

{% if correspondencias %}
<fieldset>
<p align="justify">
<strong>Correspondências:</strong>
{% for c in correspondencias %}
<strong>{{forloop.counter}})</strong> {{c.tipo}} -
<strong>{{c.epigrafe}}</strong> -
{% if c.interessado %}Interessado: {{c.interessado}} - {% endif %}
Assunto: {{c.assunto}};
{% endfor %}
</p>
</fieldset>
{% endif %}