27 lines
655 B
HTML
27 lines
655 B
HTML
{% include 'base.html' %}
|
|
{% block main %}
|
|
<div class="qard">
|
|
<h5>ISO</h5>
|
|
<table id="affiche">
|
|
<tr><th>ISO list</th><th>Delete</th></tr>
|
|
{%for iso in list_iso %}
|
|
<tr><td style="height:60px;">{{ iso[0] }} ( {{ iso[1] }} )
|
|
|
|
</td><td><form action="/deliso" method="post"><button type="submit" value="{{ iso[0] }}" name="fichier" onclick="loading();" class="deliso"><span class="fas fa-trash"></span></button></form>
|
|
</td></tr>
|
|
|
|
{%endfor%}
|
|
</table>
|
|
</div>
|
|
<div class="space"></div>
|
|
<div class="qard">
|
|
<h5>Upload ISO</h5>
|
|
{{ dropzone.create(action='upload') }}
|
|
</body>
|
|
</div>
|
|
<div class="space"></div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
{% include 'foot.html' %}
|