Browse Source

Fixes #1217

pull/1226/head
Edward Ribeiro 8 years ago
parent
commit
b69b18d2eb
  1. 4
      sapl/templates/materia/em_lote/tramitacao.html

4
sapl/templates/materia/em_lote/tramitacao.html

@ -39,8 +39,8 @@
<div class="row">
<div class="col-md-6">
<label>Unidade Local*</label>
{% if unidade_local|length > 1 %}<option></option>{% endif %}
<select name="unidade_tramitacao_local" class="form-control" required="True">
{% if unidade_local|length > 1 %}<option></option>{% endif %}
{% for u in unidade_local %} <option value="{{u.id}}">{{u}}</option> {% endfor %}
</select>
</div>
@ -105,7 +105,7 @@
</thead>
<tbody>
{% for materia in object_list %}
<tr>
<td>
<input type="checkbox" name="materia_id" value="{{materia.id}}" {% if check %} checked {% endif %}/>

Loading…
Cancel
Save