Commit | Line | Data |
---|---|---|
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 | ||
17 | import wtforms | |
be5be115 | 18 | from wtforms.ext.sqlalchemy.fields import QuerySelectField |
665b9c42 | 19 | from mediagoblin.tools.translate import lazy_pass_to_ugettext as _ |
7960ac98 | 20 | |
f646f5d3 | 21 | class MediaCommentForm(wtforms.Form): |
7960ac98 | 22 | comment_content = wtforms.TextAreaField( |
55a04f01 JW |
23 | _('Comment'), |
24 | [wtforms.validators.Required()], | |
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 | 29 | class ConfirmDeleteForm(wtforms.Form): |
7624c641 CAW |
30 | confirm = wtforms.BooleanField( |
31 | _('I am sure I want to delete this')) | |
be5be115 AW |
32 | |
33 | class ConfirmCollectionItemRemoveForm(wtforms.Form): | |
34 | confirm = wtforms.BooleanField( | |
35 | _('I am sure I want to remove this item from the collection')) | |
36 | ||
37 | class 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 | |
3cf4ae0c | 50 | <a href="http://daringfireball.net/projects/markdown/basics" target="_blank"> |
be5be115 | 51 | Markdown</a> for formatting.""")) |
30a9fe7c | 52 | |
53 | class CommentReportForm(wtforms.Form): | |
6bba33d7 | 54 | report_reason = wtforms.TextAreaField( |
55 | _('Reason for Reporting'), | |
56 | [wtforms.validators.Required()]) | |
f26c21cd | 57 | reporter_id = wtforms.HiddenField('') |
30a9fe7c | 58 | |
59 | class MediaReportForm(wtforms.Form): | |
6bba33d7 | 60 | report_reason = wtforms.TextAreaField( |
61 | _('Reason for Reporting'), | |
62 | [wtforms.validators.Required()]) | |
f26c21cd | 63 | reporter_id = wtforms.HiddenField('') |