Files
jumpserver/apps/users/forms.py
ibuler 3bf0d4aabb Add common app
common app used as write public api or templatetags

modify user list view and user edit view
2016-08-16 00:09:48 +08:00

15 lines
335 B
Python

# ~*~ coding: utf-8 ~*~
from django.forms import ModelForm
from .models import User, UserGroup
class UserForm(ModelForm):
class Meta:
model = User
fields = [
'username', 'password', 'name', 'email', 'groups', 'wechat',
'phone', 'enable_2FA', 'role', 'date_expired', 'comment',
]