1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
{% for entity in entities %}
<tr>
<td class="hidden-print"><input type="checkbox" name="entities[]" value="{{ entity.id }}"></td>
<td>{{ entity.ordre}}</a></td>
<td> <input type="text" style=" padding:5px 10px; background-color:{{entity.couleur}}; border-radius:3px;" /></td>
<td> <a href="{{ path('statut_edit', { 'id': entity.id }) }}">{{ entity.statut}}</a></td>
<td>{{ entity.refixer}}</a></td>
</tr>
{% else %}
<tr class="mypagination">
<td colspan="10">
<div id="msgbox" class="alert alert-danger fade in" role="alert">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>info !</strong> aucun résultat ne correspond à vos critères
</div>
</td>
</tr>
{% endfor %} |
Partager