mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-05 23:59:09 +00:00
17 lines
452 B
HTML
17 lines
452 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<h1>Select & Upload an image for GNS3</h1>
|
|
<form enctype="multipart/form-data" action="/upload" method="post">
|
|
File: <input type="file" name="file" />
|
|
<br />
|
|
<br />
|
|
<input type="submit" value="Upload" />
|
|
</form>
|
|
{%if files%}
|
|
<h2>Files on {{gns3_host}}</h2>
|
|
{%for file in files%}
|
|
<p>{{file}}</a></p>
|
|
{%endfor%}
|
|
{%endif%}
|
|
{% endblock %}
|