Merge branch 'production'
[wolnelektury.git] / apps / suggest / forms.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 import forms
6 from django.utils.translation import ugettext_lazy as _
7
8 class SuggestForm(forms.Form):
9     contact = forms.CharField(label=_('Contact'), max_length=120, required=False)
10     description = forms.CharField(label=_('Description'), widget=forms.Textarea, required=True)