aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/templates
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2010-07-18 11:22:24 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2010-07-18 11:22:24 -0500
commitfbf7880e6873a541da5f45f90d9e0fd31119514a (patch)
treebb0f429823a7863e2b9cce4deab7bf4e850cf644 /mediagoblin/templates
parent0f63a9440d440aac04042bd6125c70a2cb8116d7 (diff)
downloadmediagoblin-fbf7880e6873a541da5f45f90d9e0fd31119514a.tar.lz
mediagoblin-fbf7880e6873a541da5f45f90d9e0fd31119514a.tar.xz
mediagoblin-fbf7880e6873a541da5f45f90d9e0fd31119514a.zip
Starting with the test submit view using wtforms
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r--mediagoblin/templates/mediagoblin/test_submit.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/mediagoblin/templates/mediagoblin/test_submit.html b/mediagoblin/templates/mediagoblin/test_submit.html
new file mode 100644
index 00000000..0d2fd258
--- /dev/null
+++ b/mediagoblin/templates/mediagoblin/test_submit.html
@@ -0,0 +1,18 @@
+<html>
+ <body>
+ <form action="{{ request.urlgen('test_submit') }}" method="POST">
+ <table>
+ {% for field in image_form %}
+ <tr>
+ <td>{{ field.label }}</td>
+ <td>{{ field }}</td>
+ </tr>
+ {% endfor %}
+ <tr>
+ <td></td>
+ <td><input type="submit" value="submit" /></td>
+ </tr>
+ </table>
+ </form>
+ </body>
+</html>