Moved common, translation, template, and url code out of util.py and into tools/...
[mediagoblin.git] / mediagoblin / submit / forms.py
CommitLineData
e323a068 1# GNU MediaGoblin -- federated, autonomous media hosting
12a100e4 2# Copyright (C) 2011 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
3539dc8f 20from mediagoblin.util import tag_length_validator
ae3bc7fa 21from mediagoblin.tools.translate import fake_ugettext_passthrough as _
e323a068
CAW
22
23
24class SubmitStartForm(wtforms.Form):
f6bf68ca 25 file = wtforms.FileField(_('File'))
e323a068 26 title = wtforms.TextField(
4b1adc13 27 _('Title'),
a8e2812b 28 [wtforms.validators.Length(min=0, max=500)])
a237735a
CAW
29 description = wtforms.TextAreaField(
30 _('Description of this work'))
909371cd 31 tags = wtforms.TextField(
4b1adc13 32 _('Tags'),
909371cd 33 [tag_length_validator])