mirror of https://gitlab.crans.org/bde/nk20
19 lines
568 B
Python
19 lines
568 B
Python
# -*- mode: python; coding: utf-8 -*-
|
|
# Copyright (C) 2018-2019 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from django.contrib.auth.forms import UserChangeForm
|
|
|
|
|
|
class CustomUserChangeForm(UserChangeForm):
|
|
"""
|
|
Make first name, last name and email required
|
|
in the default Django Auth User model
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields['first_name'].required = True
|
|
self.fields['last_name'].required = True
|
|
self.fields['email'].required = True
|