summaryrefslogtreecommitdiffstats
path: root/templates/fileupload.html
blob: d1db6ca3489481cc2df5089dbfe588bdfcc4b343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<h2>Fileupload</h2>

<ul>
{% for fileuploaded in filesuploaded %}
<li>UPLOADEDFILE: {{fileuploaded}}
</li>
{% endfor %}
</ul>
<p>MESSAGE: {{message}}
</p>

{% if not filesuploaded %}
<form action="" method="POST">
    <p>file to upload</p>
    <p><input type="file" name="file1"/></p>
    <p><input type="submit" name="submit" value="Submit" /></p>
</form>
{% endif %}