mirror of
https://github.com/jazzband/django-authority.git
synced 2026-03-17 14:40:31 +00:00
7 lines
260 B
Python
7 lines
260 B
Python
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from authority.forms import UserPermissionForm
|
|
|
|
class SpecialUserPermissionForm(UserPermissionForm):
|
|
user = forms.CharField(label=_('Special user'), widget=forms.Textarea())
|