forms.py 469 B

1234567891011121314
  1. from django.utils.translation import ugettext_lazy as _
  2. from django import forms
  3. from misago.forms import Form
  4. class ForumRoleForm(Form):
  5. name = forms.CharField(max_length=255)
  6. layout = (
  7. (
  8. _("Basic Role Options"),
  9. (
  10. ('name', {'label': _("Role Name"), 'help_text': _("Role Name is used to identify this role in Admin Control Panel.")}),
  11. ),
  12. ),
  13. )