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.
17 lines
495 B
17 lines
495 B
{% if correspondencias %}
|
|
<fieldset>
|
|
<legend>Correspondências</legend>
|
|
<table class="table">
|
|
{% for c in correspondencias %}
|
|
<tr>
|
|
<td>
|
|
<strong>({{c.tipo}})</strong> <strong>{{c.epigrafe}}</strong><br>
|
|
<strong>Data do Documento: </strong>{{c.data}}<br>
|
|
<strong>Assunto:</strong> {{c.assunto}}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</fieldset>
|
|
<br /><br /><br />
|
|
{% endif %}
|