Still totally useless but at least it writes to the database
[mediagoblin.git] / mediagoblin / templates / mediagoblin / test_submit.html
CommitLineData
fbf7880e
CAW
1<html>
2 <body>
bda34053
CAW
3 <form action="{{ request.urlgen('test_submit') }}" method="POST"
4 enctype="multipart/form-data">
fbf7880e
CAW
5 <table>
6 {% for field in image_form %}
7 <tr>
8 <td>{{ field.label }}</td>
9 <td>{{ field }}</td>
10 </tr>
11 {% endfor %}
12 <tr>
13 <td></td>
14 <td><input type="submit" value="submit" /></td>
15 </tr>
16 </table>
17 </form>
18 </body>
19</html>