Mercurial > odfcast
view templates/template_convert.html @ 26:26e6f2f00638
We need a pyuno version >0.2 and pypdf2 now
pyuno 0.2 has a bug running the python module from pyc instead of py file.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 29 Sep 2014 16:19:05 +0200 |
parents | 585904e7411a |
children | 1dd40e13da74 |
line wrap: on
line source
{% extends 'base.html' %} {% block content %} <h1>Template Convert</h1> <form role="form" action="" method="POST" enctype="multipart/form-data"> <div class="form-group"> <label for="format">Format</label> <input id="format" type="text" placeholder="Format" name="format" class="form-control"> </div> <div class="form-group"> <label for="datadict">Data in JSON Format</label> <textarea id="datadict" class="form-control"></textarea> </div> <div class="form-group"> <label for="file" >File</label> <input id="file" type="file" name="file"> </div> <button class="btn btn-default" type="submit">Convert</button> </form> {% endblock %}