mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
20 lines
644 B
HTML
20 lines
644 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Extension</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for extension in extension_list %}
|
|
<tr>
|
|
<td>{{ extension.name }}</td>
|
|
<td class="text-right">
|
|
{% if is_infra %}
|
|
{% include 'buttons/edit.html' with href='machines:edit-extension' id=extension.id %}
|
|
{% endif %}
|
|
{% include 'buttons/history.html' with href='machines:history' name='extension' id=extension.id %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|