It's 2012 all up in here
[mediagoblin.git] / mediagoblin / submit / forms.py
CommitLineData
e323a068 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
e323a068
CAW
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17
18import wtforms
4b1adc13 19
152a3bfa 20from mediagoblin.tools.text import tag_length_validator
ae3bc7fa 21from mediagoblin.tools.translate import fake_ugettext_passthrough as _
25b48323 22from mediagoblin.tools.licenses import licenses_as_choices
e323a068 23
97ec97db 24
e323a068 25class SubmitStartForm(wtforms.Form):
f6bf68ca 26 file = wtforms.FileField(_('File'))
e323a068 27 title = wtforms.TextField(
4b1adc13 28 _('Title'),
a8e2812b 29 [wtforms.validators.Length(min=0, max=500)])
a237735a 30 description = wtforms.TextAreaField(
9c196287
JS
31 _('Description of this work'),
32 description=_("""You can use
33 <a href="http://daringfireball.net/projects/markdown/basics">
34 Markdown</a> for formatting."""))
909371cd 35 tags = wtforms.TextField(
4b1adc13 36 _('Tags'),
cee794a8
JS
37 [tag_length_validator],
38 description=_(
6f559060 39 "Separate tags by commas."))
25b48323
AW
40 license = wtforms.SelectField(
41 _('License'),
3c351460 42 [wtforms.validators.Optional(),],
25b48323 43 choices=licenses_as_choices())