Browse Source

Corrige formatação de ids no template

pull/66/head
Sesostris Vieira 4 years ago
parent
commit
52e8931ef9
  1. 4
      sigi/apps/metas/templates/metas/openmap.html

4
sigi/apps/metas/templates/metas/openmap.html

@ -177,8 +177,8 @@
</div> </div>
{% for g in gerentes %} {% for g in gerentes %}
<div class="form-check"> <div class="form-check">
<input type="checkbox" id="gerente_{{ g.id }}" name="gerente" value="{{ g.id }}" checked/> <input type="checkbox" id="gerente_{{ g.id|stringformat:"s" }}" name="gerente" value="{{ g.id|stringformat:"s" }}" checked/>
<label for="gerente_{{ g.id }}" class="form-check-label">{{ g.nome_completo }}</label> <label for="gerente_{{ g.id|stringformat:"s" }}" class="form-check-label">{{ g.nome_completo }}</label>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>

Loading…
Cancel
Save