mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-25 07:58:04 +01:00
9 lines
221 B
Python
9 lines
221 B
Python
|
import django_registration.forms
|
||
|
|
||
|
from common.models import User
|
||
|
|
||
|
|
||
|
class RegistrationForm(django_registration.forms.RegistrationForm):
|
||
|
class Meta(django_registration.forms.RegistrationForm.Meta):
|
||
|
model = User
|