mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-20 10:34:30 +00:00
Auto-generate model form for user updation
- Remove the custom UserForm
This commit is contained in:
parent
6612fffdb5
commit
82c2785272
@ -1,30 +0,0 @@
|
|||||||
#
|
|
||||||
# This file is part of Plinth.
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU Affero General Public License as
|
|
||||||
# published by the Free Software Foundation, either version 3 of the
|
|
||||||
# License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU Affero General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
|
|
||||||
from django import forms
|
|
||||||
from django.contrib.auth.models import User
|
|
||||||
|
|
||||||
|
|
||||||
class UserForm(forms.ModelForm):
|
|
||||||
"""Form to change one user"""
|
|
||||||
class Meta:
|
|
||||||
model = User
|
|
||||||
fields = ('username', 'groups')
|
|
||||||
widgets = {
|
|
||||||
'username': forms.widgets.TextInput(attrs={'style': 'width: 50%'}),
|
|
||||||
'groups': forms.widgets.CheckboxSelectMultiple(),
|
|
||||||
}
|
|
||||||
@ -15,6 +15,7 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
from django import forms
|
||||||
from django.contrib import messages
|
from django.contrib import messages
|
||||||
from django.contrib.auth import update_session_auth_hash
|
from django.contrib.auth import update_session_auth_hash
|
||||||
from django.contrib.auth.forms import UserCreationForm, AdminPasswordChangeForm
|
from django.contrib.auth.forms import UserCreationForm, AdminPasswordChangeForm
|
||||||
@ -25,7 +26,6 @@ from django.views.generic.edit import (CreateView, DeleteView, UpdateView,
|
|||||||
FormView)
|
FormView)
|
||||||
from django.views.generic import ListView
|
from django.views.generic import ListView
|
||||||
from gettext import gettext as _
|
from gettext import gettext as _
|
||||||
from .forms import UserForm
|
|
||||||
|
|
||||||
|
|
||||||
# TODO: we do not use the title anymore, and 'items' is also a python keyword.
|
# TODO: we do not use the title anymore, and 'items' is also a python keyword.
|
||||||
@ -69,13 +69,19 @@ class UserList(PlinthContextMixin, ListView):
|
|||||||
|
|
||||||
class UserUpdate(PlinthContextMixin, SuccessMessageMixin, UpdateView):
|
class UserUpdate(PlinthContextMixin, SuccessMessageMixin, UpdateView):
|
||||||
template_name = 'users_update.html'
|
template_name = 'users_update.html'
|
||||||
form_class = UserForm
|
fields = ('username', 'groups', 'is_active')
|
||||||
model = User
|
model = User
|
||||||
slug_field = "username"
|
slug_field = 'username'
|
||||||
fields = ['username', 'password']
|
|
||||||
exclude = ('last_login', 'email', 'first_name', 'last_name')
|
|
||||||
success_message = _('User %(username)s updated.')
|
success_message = _('User %(username)s updated.')
|
||||||
title = _('Edit User')
|
title = _('Edit User')
|
||||||
|
widgets = {
|
||||||
|
'groups': forms.widgets.CheckboxSelectMultiple(),
|
||||||
|
}
|
||||||
|
|
||||||
|
def get_form_class(self):
|
||||||
|
"""Return a form class generated from user model."""
|
||||||
|
return forms.models.modelform_factory(self.model, fields=self.fields,
|
||||||
|
widgets=self.widgets)
|
||||||
|
|
||||||
def get_success_url(self):
|
def get_success_url(self):
|
||||||
return reverse('users:edit', kwargs={'slug': self.object.username})
|
return reverse('users:edit', kwargs={'slug': self.object.username})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user