mirror of https://github.com/interlegis/sapl.git
1 changed files with 7 additions and 17 deletions
@ -1,18 +1,8 @@ |
|||
{% load common_tags %} |
|||
<fieldset> |
|||
<legend>Expedientes</legend> |
|||
<table class="table"> |
|||
<thead class="thead-default"> |
|||
{% for e in expedientes %} |
|||
<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> |
|||
{% endfor %} |
|||
</thead> |
|||
</table> |
|||
</fieldset> |
|||
{% for e in expedientes %} |
|||
<fieldset class="form-group"> |
|||
<legend>{{e.tipo}}</legend> |
|||
<textarea rows="5" cols="50" name="conteudo" id="conteudo" class="form-control">{{e.conteudo}}</textarea> |
|||
<br /> |
|||
</fieldset> |
|||
{% endfor %} |
|||
Loading…
Reference in new issue