c5ab9fd94f3390f2c9aa9ec6f45c40266406fe19
[mediagoblin.git] / mediagoblin / edit / forms.py
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
18 import wtforms
19
20 from mediagoblin.util import tag_length_validator, TOO_LONG_TAG_WARNING
21 from mediagoblin.util import fake_ugettext_passthrough as _
22
23
24 class EditForm(wtforms.Form):
25 title = wtforms.TextField(
26 _('Title'),
27 [wtforms.validators.Length(min=0, max=500)])
28 slug = wtforms.TextField(
29 _('Slug'),
30 [wtforms.validators.Required(message=_("The slug can't be empty"))])
31 description = wtforms.TextAreaField('Description of this work')
32 tags = wtforms.TextField(
33 _('Tags'),
34 [tag_length_validator])
35
36 class EditProfileForm(wtforms.Form):
37 bio = wtforms.TextAreaField(
38 _('Bio'),
39 [wtforms.validators.Length(min=0, max=500)])
40 url = wtforms.TextField(
41 _('Website'),
42 [wtforms.validators.Optional(),
43 wtforms.validators.URL(message='Improperly formed URL')])
44
45 class EditAttachmentsForm(wtforms.Form):
46 attachment_name = wtforms.TextField(
47 'Title')
48 attachment_file = wtforms.FileField(
49 'File')