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.
22 lines
616 B
22 lines
616 B
{% if expedientes %}
|
|
<fieldset>
|
|
<legend>Expedientes</legend>
|
|
<table class="table">
|
|
<thead class="thead-default">
|
|
{% for e in expedientes %}
|
|
{% if e.conteudo %}
|
|
<tr>
|
|
<td>
|
|
<b>{{e.tipo}}: </b> <br /><br />
|
|
<div style="border:0.5px solid #BAB4B1; border-radius: 10px; background-color: rgba(225, 225, 225, .8);">
|
|
<p>{{e.conteudo|safe}}</p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</thead>
|
|
</table>
|
|
</fieldset>
|
|
<br /><br /><br />
|
|
{% endif %}
|