Small changes to fixing transcode percentage
[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 23 _('Comment'),
0742e11d 24 [wtforms.validators.InputRequired()],
55a04f01 25 description=_(u'You can use '
3cf4ae0c 26 u'<a href="http://daringfireball.net/projects/markdown/basics" target="_blank">'
55a04f01 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()],)
f4686cde 44 collection_title = wtforms.StringField(
be5be115
AW
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
3cf4ae0c 50 <a href="http://daringfireball.net/projects/markdown/basics" target="_blank">
be5be115 51 Markdown</a> for formatting."""))
30a9fe7c 52
53class CommentReportForm(wtforms.Form):
6bba33d7 54 report_reason = wtforms.TextAreaField(
55 _('Reason for Reporting'),
0742e11d 56 [wtforms.validators.InputRequired()])
f26c21cd 57 reporter_id = wtforms.HiddenField('')
30a9fe7c 58
59class MediaReportForm(wtforms.Form):
6bba33d7 60 report_reason = wtforms.TextAreaField(
61 _('Reason for Reporting'),
0742e11d 62 [wtforms.validators.InputRequired()])
f26c21cd 63 reporter_id = wtforms.HiddenField('')