Mercurial > odfcast
comparison templates/template_convert.html @ 18:585904e7411a
Add html for converting a odf with a template
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 29 Sep 2014 14:18:11 +0200 |
parents | |
children | 1dd40e13da74 |
comparison
equal
deleted
inserted
replaced
17:75d5d18e7d52 | 18:585904e7411a |
---|---|
1 {% extends 'base.html' %} | |
2 | |
3 {% block content %} | |
4 <h1>Template Convert</h1> | |
5 | |
6 <form role="form" action="" method="POST" enctype="multipart/form-data"> | |
7 <div class="form-group"> | |
8 <label for="format">Format</label> | |
9 <input id="format" type="text" placeholder="Format" name="format" class="form-control"> | |
10 </div> | |
11 <div class="form-group"> | |
12 <label for="datadict">Data in JSON Format</label> | |
13 <textarea id="datadict" class="form-control"></textarea> | |
14 </div> | |
15 <div class="form-group"> | |
16 <label for="file" >File</label> | |
17 <input id="file" type="file" name="file"> | |
18 </div> | |
19 <button class="btn btn-default" type="submit">Convert</button> | |
20 </form> | |
21 {% endblock %} |