Fixing import to mediagoblin.db.base in stl models
[mediagoblin.git] / mediagoblin / submit / forms.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
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
18 import wtforms
19
20 from mediagoblin.tools.text import tag_length_validator
21 from mediagoblin.tools.translate import fake_ugettext_passthrough as _
22 from mediagoblin.tools.licenses import licenses_as_choices
23
24
25 class SubmitStartForm(wtforms.Form):
26 file = wtforms.FileField(_('File'))
27 title = wtforms.TextField(
28 _('Title'),
29 [wtforms.validators.Length(min=0, max=500)])
30 description = wtforms.TextAreaField(
31 _('Description of this work'),
32 description=_("""You can use
33 <a href="http://daringfireball.net/projects/markdown/basics">
34 Markdown</a> for formatting."""))
35 tags = wtforms.TextField(
36 _('Tags'),
37 [tag_length_validator],
38 description=_(
39 "Separate tags by commas."))
40 license = wtforms.SelectField(
41 _('License'),
42 [wtforms.validators.Optional(),],
43 choices=licenses_as_choices())
44
45 class AddCollectionForm(wtforms.Form):
46 title = wtforms.TextField(
47 _('Title'),
48 [wtforms.validators.Length(min=0, max=500), wtforms.validators.Required()])
49 description = wtforms.TextAreaField(
50 _('Description of this collection'),
51 description=_("""You can use
52 <a href="http://daringfireball.net/projects/markdown/basics">
53 Markdown</a> for formatting."""))