mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
695 B
29 lines
695 B
# ~*~ coding: utf-8 ~*~
|
|
|
|
from django.forms import ModelForm
|
|
from django import forms
|
|
|
|
from .models import User, UserGroup
|
|
|
|
|
|
class UserAddForm(ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = [
|
|
'username', 'name', 'email', 'groups', 'wechat',
|
|
'phone', 'enable_2FA', 'role', 'date_expired', 'comment',
|
|
]
|
|
# widgets = {
|
|
# 'groups': forms.SelectMultiple(attrs={'class': 'chosen-select'})
|
|
# }
|
|
|
|
|
|
class UserUpdateForm(ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = [
|
|
'name', 'email', 'groups', 'wechat', 'avatar',
|
|
'phone', 'enable_2FA', 'role', 'date_expired', 'comment',
|
|
]
|
|
|