Merge remote branch 'remotes/jwandborg/f403_ability_to_delete'
[mediagoblin.git] / mediagoblin / submit / forms.py
CommitLineData
e323a068
CAW
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011 Free Software Foundation, Inc
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
7960ac98 21from mediagoblin.util 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)])
e323a068 29 description = wtforms.TextAreaField('Description of this work')
909371cd 30 tags = wtforms.TextField(
4b1adc13 31 _('Tags'),
909371cd 32 [tag_length_validator])