Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Last active August 27, 2015 16:18
Show Gist options
  • Save fchevitarese/12e5ad7848a9a397fdaa to your computer and use it in GitHub Desktop.
Save fchevitarese/12e5ad7848a9a397fdaa to your computer and use it in GitHub Desktop.
{% 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