1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
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.
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.
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/>.
18 from wtforms
.ext
.sqlalchemy
.fields
import QuerySelectField
19 from mediagoblin
.tools
.translate
import lazy_pass_to_ugettext
as _
21 class MediaCommentForm(wtforms
.Form
):
22 comment_content
= wtforms
.TextAreaField(
24 [wtforms
.validators
.InputRequired()],
25 description
=_(u
'You can use '
26 u
'<a href="http://daringfireball.net/projects/markdown/basics" target="_blank">'
27 u
'Markdown</a> for formatting.'))
29 class ConfirmDeleteForm(wtforms
.Form
):
30 confirm
= wtforms
.BooleanField(
31 _('I am sure I want to delete this'))
33 class ConfirmCollectionItemRemoveForm(wtforms
.Form
):
34 confirm
= wtforms
.BooleanField(
35 _('I am sure I want to remove this item from the collection'))
37 class MediaCollectForm(wtforms
.Form
):
38 collection
= QuerySelectField(
40 allow_blank
=True, blank_text
=_('-- Select --'), get_label
='title',)
41 note
= wtforms
.TextAreaField(
43 [wtforms
.validators
.Optional()],)
44 collection_title
= wtforms
.StringField(
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" target="_blank">
51 Markdown</a> for formatting."""))
53 class CommentReportForm(wtforms
.Form
):
54 report_reason
= wtforms
.TextAreaField(
55 _('Reason for Reporting'),
56 [wtforms
.validators
.InputRequired()])
57 reporter_id
= wtforms
.HiddenField('')
59 class MediaReportForm(wtforms
.Form
):
60 report_reason
= wtforms
.TextAreaField(
61 _('Reason for Reporting'),
62 [wtforms
.validators
.InputRequired()])
63 reporter_id
= wtforms
.HiddenField('')