Last active
August 27, 2015 16:18
-
-
Save fchevitarese/12e5ad7848a9a397fdaa to your computer and use it in GitHub Desktop.
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"> | |
{% for t in todos_planos %} | |
{% if n.id == t.client_id and id_plano == t.id %} | |
<div class=" checkbox-inline checkbox-ios"> | |
<label for="checkbox-ios{{n.id}}"> | |
<input type="checkbox" checked id="checkbox-ios{{n.id}}" value="{{id_plano}}" name="checkbox-ios{{n.id}}"> | |
</label> | |
</div> | |
{% else %} | |
<div class=" checkbox-inline checkbox-ios"> | |
<label for="checkbox-ios{{n.id}}"> | |
<input type="checkbox" id="checkbox-ios{{n.id}}" value="{{id_plano}}" name="checkbox-ios{{n.id}}"> | |
</label> | |
</div> | |
{% endif %} | |
{% endfor %} | |
</td> | |
</td> | |
</tr> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment