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