aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/templates
diff options
context:
space:
mode:
authorJef van Schendel <jefvanschendel@gmail.com>2011-05-29 01:14:48 +0200
committerJef van Schendel <jefvanschendel@gmail.com>2011-05-29 01:14:48 +0200
commitf0e621c8f564f70517600c96880f8ca3fc60f7ff (patch)
tree50f9d68fe0948fb3e0e071b7fb52b2ab3c9ec2eb /mediagoblin/templates
parentdf901af738b6be18b7e8049e308f6797c21fbd92 (diff)
downloadmediagoblin-f0e621c8f564f70517600c96880f8ca3fc60f7ff.tar.lz
mediagoblin-f0e621c8f564f70517600c96880f8ca3fc60f7ff.tar.xz
mediagoblin-f0e621c8f564f70517600c96880f8ca3fc60f7ff.zip
Changed submit form to divs
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r--mediagoblin/templates/mediagoblin/submit/start.html15
1 files changed, 7 insertions, 8 deletions
diff --git a/mediagoblin/templates/mediagoblin/submit/start.html b/mediagoblin/templates/mediagoblin/submit/start.html
index 8fdbe4ed..75c31df4 100644
--- a/mediagoblin/templates/mediagoblin/submit/start.html
+++ b/mediagoblin/templates/mediagoblin/submit/start.html
@@ -20,16 +20,15 @@
{% import "/mediagoblin/utils/wtforms.html" as wtforms_util %}
{% block mediagoblin_content %}
- <h1>Submit yer media</h1>
<form action="{{ request.urlgen('mediagoblin.submit.start') }}"
method="POST" enctype="multipart/form-data">
- <table>
- {{ wtforms_util.render_table(submit_form) }}
- <tr>
- <td></td>
- <td><input type="submit" value="submit" class="button" /></td>
- </tr>
- </table>
+ <div class="submit_box form_box">
+ <h1>Submit yer media</h1>
+ {{ wtforms_util.render_divs(submit_form) }}
+ <div class="form_submit_buttons">
+ <input type="submit" value="submit" class="button" />
+ </div>
+ </div>
</form>
{% endblock %}