mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-30 08:32:26 +00:00
19 lines
773 B
HTML
19 lines
773 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Droit</th>
|
|
<th>Gid</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for listright in listright_list %}
|
|
<tr>
|
|
<td>{{ listright.listright }}</td>
|
|
<td>{{ listright.gid }}</td>
|
|
<td><a class="btn btn-primary btn-sm" role="button" href="{% url 'users:edit-listright' listright.id %}"><i class="glyphicon glyphicon-pushpin"></i> Editer</a></td>
|
|
<td><a class="btn btn-info btn-sm" role="button" href="{% url 'users:history' 'listright' listright.id %}"><i class="glyphicon glyphicon-time"></i> Historique</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|