Starting with the test submit view using wtforms
[mediagoblin.git] / mediagoblin / templates / mediagoblin / test_submit.html
1 <html>
2 <body>
3 <form action="{{ request.urlgen('test_submit') }}" method="POST">
4 <table>
5 {% for field in image_form %}
6 <tr>
7 <td>{{ field.label }}</td>
8 <td>{{ field }}</td>
9 </tr>
10 {% endfor %}
11 <tr>
12 <td></td>
13 <td><input type="submit" value="submit" /></td>
14 </tr>
15 </table>
16 </form>
17 </body>
18 </html>