first commit
This commit is contained in:
26
web/templates/devices.html
Normal file
26
web/templates/devices.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{% 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' %}
|
||||
Reference in New Issue
Block a user