mirror of
https://github.com/jazzband/django-authority.git
synced 2026-05-11 00:53:11 +00:00
8 lines
235 B
Python
8 lines
235 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'))
|