Mercurial > odfcast
comparison templates/convert.html @ 16:f4920ab1d27c
Add basic html interface for convert
This allow testing the code via the browser
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 29 Sep 2014 14:02:55 +0200 |
parents | |
children | 75d5d18e7d52 |
comparison
equal
deleted
inserted
replaced
15:d2fb4862adb8 | 16:f4920ab1d27c |
---|---|
1 {% extends 'base.html' %} | |
2 | |
3 {% block content %} | |
4 <form action="" method="POST" enctype="multipart/form-data"> | |
5 <div> | |
6 <label>Format</label> | |
7 <input type="text" placeholder="Format" name="format"></input> | |
8 </div> | |
9 <div> | |
10 <label>File</label> | |
11 <input type="file" name="file"></input> | |
12 </div> | |
13 <input type="submit" value="Convert"></input> | |
14 </form> | |
15 {% endblock %} |