mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 11:53:12 +00:00
18 lines
533 B
HTML
18 lines
533 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Alias</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for alias in alias_list %}
|
|
<tr>
|
|
<td>{{ alias }}</td>
|
|
<td class="text-right">
|
|
{% include 'buttons/edit.html' with href='machines:edit-alias' id=alias.id %}
|
|
{% include 'buttons/history.html' with href='machines:history' name='alias' id=alias.id %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|