diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-11 20:06:39 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-11 20:06:39 -0500 |
commit | 3ec6fe225ccb832a3f2a368f45b4588b1bc37248 (patch) | |
tree | aaeb74535001577d5ff527b06ebbfe5d645cde62 /mediagoblin/submit/forms.py | |
parent | f016fc65056c03fd64d40b918da670281835f76d (diff) | |
parent | d9204d3a3dd91f63fd43345415ebeb6fc02cc1c8 (diff) | |
download | mediagoblin-3ec6fe225ccb832a3f2a368f45b4588b1bc37248.tar.lz mediagoblin-3ec6fe225ccb832a3f2a368f45b4588b1bc37248.tar.xz mediagoblin-3ec6fe225ccb832a3f2a368f45b4588b1bc37248.zip |
Merge remote branch 'remotes/gullydwarf-cfdv/f446_use_render_divs_once_per_form'
Diffstat (limited to 'mediagoblin/submit/forms.py')
-rw-r--r-- | mediagoblin/submit/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/submit/forms.py b/mediagoblin/submit/forms.py index 241d32dc..4519b057 100644 --- a/mediagoblin/submit/forms.py +++ b/mediagoblin/submit/forms.py @@ -22,11 +22,11 @@ from mediagoblin.util import fake_ugettext_passthrough as _ class SubmitStartForm(wtforms.Form): + file = wtforms.FileField(_('File')) title = wtforms.TextField( _('Title'), [wtforms.validators.Length(min=0, max=500)]) description = wtforms.TextAreaField('Description of this work') - file = wtforms.FileField(_('File')) tags = wtforms.TextField( _('Tags'), [tag_length_validator]) |