dnmgmt/dncore/forms.py

13 lines
372 B
Python
Raw Normal View History

2018-01-17 00:23:00 +01:00
# This file is part of dnmgmt, a number resource management system
# Licensed under GNU General Public License v3 or later
# Written by Sebastian Lohff (seba@someserver.de)
2017-03-22 04:06:24 +01:00
from django.contrib.auth.forms import UserCreationForm
from .models import User
class CustomUserCreationForm(UserCreationForm):
2019-05-30 22:10:55 +02:00
class Meta:
model = User
fields = ("username",)