1234567891011121314 |
- from django.utils.translation import ugettext_lazy as _
- from django import forms
- from misago.forms import Form
- class ForumRoleForm(Form):
- name = forms.CharField(max_length=255)
- layout = (
- (
- _("Basic Role Options"),
- (
- ('name', {'label': _("Role Name"), 'help_text': _("Role Name is used to identify this role in Admin Control Panel.")}),
- ),
- ),
- )
|