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.
5 from django.utils.translation import ugettext_lazy as _
7 from ajaxable.utils import AjaxableFormView
8 from suggest import forms
9 from suggest.models import Suggestion, PublishingSuggestion
12 class PublishingSuggestionFormView(AjaxableFormView):
13 form_class = forms.PublishingSuggestForm
14 title = _('Report a bug or suggestion')
15 template = "publishing_suggest.html"
16 success_message = _('Report was sent successfully.')
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.')