Merge branch 'master' of git://gitorious.org/mediagoblin/mediagoblin
[mediagoblin.git] / mediagoblin / user_pages / forms.py
CommitLineData
f646f5d3 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
f646f5d3
JW
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
17import wtforms
be5be115 18from wtforms.ext.sqlalchemy.fields import QuerySelectField
665b9c42 19from mediagoblin.tools.translate import lazy_pass_to_ugettext as _
7960ac98 20
f646f5d3 21class MediaCommentForm(wtforms.Form):
7960ac98 22 comment_content = wtforms.TextAreaField(
55a04f01
JW
23 _('Comment'),
24 [wtforms.validators.Required()],
25 description=_(u'You can use '
26 u'<a href="http://daringfireball.net/projects/markdown/basics">'
27 u'Markdown</a> for formatting.'))
502073f2 28
502073f2 29class ConfirmDeleteForm(wtforms.Form):
7624c641
CAW
30 confirm = wtforms.BooleanField(
31 _('I am sure I want to delete this'))
be5be115
AW
32
33class ConfirmCollectionItemRemoveForm(wtforms.Form):
34 confirm = wtforms.BooleanField(
35 _('I am sure I want to remove this item from the collection'))
36
37class MediaCollectForm(wtforms.Form):
accb073e
E
38 collection = QuerySelectField(
39 _('Collection'),
40 allow_blank=True, blank_text=_('-- Select --'), get_label='title',)
be5be115
AW
41 note = wtforms.TextAreaField(
42 _('Include a note'),
43 [wtforms.validators.Optional()],)
44 collection_title = wtforms.TextField(
45 _('Title'),
46 [wtforms.validators.Length(min=0, max=500)])
47 collection_description = wtforms.TextAreaField(
48 _('Description of this collection'),
49 description=_("""You can use
50 <a href="http://daringfireball.net/projects/markdown/basics">
51 Markdown</a> for formatting."""))