Browse Source

Changing the html of expedientes

pull/2017/head
Mariana Mendes 8 years ago
parent
commit
1b214ea824
  1. 24
      sapl/templates/sessao/blocos_resumo/expedientes.html

24
sapl/templates/sessao/blocos_resumo/expedientes.html

@ -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…
Cancel
Save