35 lines
1023 B
HTML
35 lines
1023 B
HTML
{% extends 'up_squelette.html' %}
|
|
|
|
{% include '_nav_userlogin.html' %}
|
|
|
|
{% block main %}
|
|
|
|
<br>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Fichier(s) <span class="badge">{{ i }}</span></th>
|
|
<th>Taille (en octets)</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if listeFichiers %}
|
|
{% for fichier in listeFichiers %}
|
|
<tr>
|
|
<td>{{ fichier[0] }}</td>
|
|
<td><a href="/myfiles/{{ fichier[1] }}">{{ fichier[1] }}</a></td>
|
|
<td>{{ fichier[2] }}</td>
|
|
<td><a href="{{ url_for('remove', nom=fichier[1]) }}"><button type="button" class="btn btn-sm btn-danger">Supprimer</button></a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock %}
|