Files
vision/templates/admin/logs.html.twig
Xbird 9f22f5b1ee V-Beta-1.0.0
Vision is out of alpha !
2022-02-02 17:46:29 +01:00

28 lines
797 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{% trans %}title_administration_logs{% endtrans %}{% endblock %}
{% block body %}
<div class="row">
<div class="col-lg-12">
<table class="table table-dark table-striped">
<thead>
<tr>
<th scope="col">fichier</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody>
{% for i in files %}
<tr>
<th scope="row">{{i.filename}}</th>
<td>{% include '_cells/adminLogsActions.html.twig' with {'filename': i.filename} %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}