Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Last active August 27, 2015 13:52
Show Gist options
  • Save fchevitarese/42eef24877c183c685e4 to your computer and use it in GitHub Desktop.
Save fchevitarese/42eef24877c183c685e4 to your computer and use it in GitHub Desktop.
for_template
{% for n in user_revenda %}
<tr>
<td class="text-align-center">{{n.login}}</td>
<td class="text-align-center">{{nome_plano}}</td>
<td class="text-align-center">
<div class=" checkbox-inline checkbox-ios">
<label for="checkbox-ios{{n.id}}">
{% for p in n.planocodcliente_set.all %}
{% for tp in todos_planos %}
{% if tp.plano_id == p.plano_id %}
<input type="checkbox" checked id="checkbox-ios{{n.id}}" value="{{id_plano}}" name="checkbox-ios{{n.id}}">
{% else %}
<input type="checkbox" id="checkbox-ios{{n.id}}" value="{{id_plano}}" name="checkbox-ios{{n.id}}">
{% end if %}
{% end for %}
</label>
</div>
</td>
</td>
</tr>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment