34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %} Files {% endblock %}
|
|
|
|
{% block titre %} Repository /{{folder}} {% endblock %}
|
|
|
|
{% block contenu %}
|
|
<div id="zone-de-contenu">
|
|
{% if ismine %}
|
|
<fieldset class="fieldset" ><legend style="font-size:25px;">Upload</legend>
|
|
<button id="add" onclick="javascript:go('/up')">
|
|
<img src="/static/plus.png" style="float:left;" alt=''/><div style="float:right; margin:5px;">Upload files</div>
|
|
</button>
|
|
</fieldset>
|
|
{% endif %}
|
|
{% if l|length > 0 %}
|
|
<fieldset class="fieldset" ><legend style="font-size:25px;">Repository</legend>
|
|
<table class="tablelist">
|
|
{% for f in l %}
|
|
<tr>
|
|
<td width=80%><a href="/d/{{folder}}/{{f.name}}">{{ f.name }}</a></td>
|
|
{% if isadmin %}
|
|
<td width=20%><a href="/f/{{f.id}}/edit"><img src="/static/edit.png" alt="Edit"/></a><a href="/f/{{f.id}}/del"><img src="/static/croix.png" alt="Supprimer"/></a></td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</fieldset>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|