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.
13 lines
395 B
13 lines
395 B
{% if expedientes %}
|
|
<fieldset>
|
|
<p style="text-align: justify;margin-top: 0">
|
|
<strong>Expedientes: </strong>
|
|
{% for e in expedientes %}
|
|
{% if e.conteudo %}
|
|
<b>{{ e.tipo }}</b>:
|
|
{{ e.conteudo|striptags|safe }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</p>
|
|
</fieldset>
|
|
{% endif %}
|
|
|