V-Beta-1.0.0

Vision is out of alpha !
This commit is contained in:
Xbird
2022-02-02 17:46:29 +01:00
parent 797bf35b47
commit 9f22f5b1ee
2297 changed files with 278438 additions and 76 deletions

View File

@@ -0,0 +1,27 @@
{% 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 %}