mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2025-01-11 02:34:28 +00:00
23 lines
738 B
HTML
23 lines
738 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Droit</th>
|
|
<th>Gid</th>
|
|
<th>Details</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for listright in listright_list %}
|
|
<tr>
|
|
<td>{{ listright.listright }}</td>
|
|
<td>{{ listright.gid }}</td>
|
|
<td>{{ listright.details }}</td>
|
|
<td class="text-right">
|
|
{% include 'buttons/edit.html' with href='users:edit-listright' id=listright.id %}
|
|
{% include 'buttons/history.html' with href='users:history' name='listright' id=listright.id %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|