Code layout change.
[wolnelektury.git] / src / suggest / views.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django.utils.translation import ugettext_lazy as _
6
7 from ajaxable.utils import AjaxableFormView
8 from suggest import forms
9
10
11 class PublishingSuggestionFormView(AjaxableFormView):
12     form_class = forms.PublishingSuggestForm
13     title = _('Report a bug or suggestion')
14     template = "publishing_suggest.html"
15     success_message = _('Report was sent successfully.')
16     honeypot = True
17
18
19 class SuggestionFormView(AjaxableFormView):
20     form_class = forms.SuggestForm
21     title = _('Report a bug or suggestion')
22     submit = _('Send report')
23     success_message = _('Report was sent successfully.')
24     honeypot = True