mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
17 lines
396 B
HTML
17 lines
396 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
{% for right in right_list %}
|
|
<th>{{ right }}</th>
|
|
<th></th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
{% for user_right in user_right_list %}
|
|
<tr>
|
|
<td> {{ user_right }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|