]> wagnertech.de Git - SVBaL.git/blob - python/eh_util/ausweis/templates/upload.html
Merge branch 'master' of http://wagnertech.de/git/SVBaL
[SVBaL.git] / python / eh_util / ausweis / templates / upload.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4     <meta charset="utf-8">
5     <title>WagnerTech - Siedlerverein</title>
6 </head>
7
8 <body>
9 <h1>Upload der S-Verein-Exportdatei</h1>
10     <!-- Upload form. Note enctype attribute! -->
11     <form action="upload" method="post" enctype="multipart/form-data">
12         {% csrf_token %}
13          <p>{{ form.file1.label_tag }} {{ form.file1 }}</p>
14
15         <p><input type="submit" value="Datei hochladen"/></p>
16     </form>
17 </body>
18
19 </html>