Last active
August 27, 2015 13:52
-
-
Save fchevitarese/42eef24877c183c685e4 to your computer and use it in GitHub Desktop.
for_template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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