8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-17 11:43:08 +00:00
re2o/machines/templates/machines/aff_extension.html

21 lines
644 B
HTML
Raw Normal View History

2016-07-08 15:54:06 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>Extension</th>
<th></th>
</tr>
</thead>
{% for extension in extension_list %}
<tr>
<td>{{ extension.name }}</td>
2016-11-18 10:53:10 +00:00
<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>
2016-07-08 15:54:06 +00:00
</tr>
{% endfor %}
</table>