2017-11-11 22:27:42 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from django import forms
|
2017-12-11 02:36:25 +00:00
|
|
|
from django.contrib.auth.forms import PasswordChangeForm, UserCreationForm
|
2017-11-11 22:27:42 +00:00
|
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
|
|
from .models import Settings
|
|
|
|
|
|
|
|
|
2017-12-11 02:36:25 +00:00
|
|
|
class UserAddForm(UserCreationForm):
|
|
|
|
class Meta:
|
|
|
|
model = User
|
2017-12-11 22:44:02 +00:00
|
|
|
fields = ['username', 'first_name', 'last_name', 'email',
|
|
|
|
'is_staff', 'is_active']
|
2017-12-11 02:36:25 +00:00
|
|
|
|
2017-12-13 18:25:36 +00:00
|
|
|
def save(self, commit=True):
|
|
|
|
user = super(UserAddForm, self).save(commit=False)
|
|
|
|
user.is_superuser = True
|
|
|
|
if commit:
|
|
|
|
user.save()
|
|
|
|
return user
|
|
|
|
|
2017-12-11 02:36:25 +00:00
|
|
|
|
|
|
|
class UserUpdateForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = User
|
2017-12-11 22:44:02 +00:00
|
|
|
fields = ['username', 'first_name', 'last_name', 'email',
|
|
|
|
'is_staff', 'is_active']
|
2017-12-11 02:36:25 +00:00
|
|
|
|
|
|
|
|
2017-11-11 22:27:42 +00:00
|
|
|
class UserForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = User
|
|
|
|
fields = ['first_name', 'last_name', 'email']
|
|
|
|
|
|
|
|
|
2017-12-02 21:20:15 +00:00
|
|
|
class UserPasswordForm(PasswordChangeForm):
|
|
|
|
class Meta:
|
|
|
|
fields = ['old_password', 'new_password1', 'new_password2']
|
|
|
|
|
|
|
|
|
2017-11-11 22:27:42 +00:00
|
|
|
class UserSettingsForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Settings
|
2021-05-14 03:28:39 +00:00
|
|
|
fields = [
|
|
|
|
'dashboard_refresh_rate',
|
|
|
|
'dashboard_hide_empty',
|
2021-06-19 21:09:05 +00:00
|
|
|
'dashboard_hide_age',
|
2021-05-14 03:28:39 +00:00
|
|
|
'language',
|
|
|
|
'timezone'
|
|
|
|
]
|