1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 16:53:02 +00:00

11 lines
236 B
Python
Raw Normal View History

2020-04-29 15:29:01 +02:00
from django.views.generic import CreateView
2020-04-29 04:06:02 +02:00
2020-04-29 15:29:01 +02:00
from .forms import SignUpForm
from .models import TFJMUser
class CreateUserView(CreateView):
model = TFJMUser
form_class = SignUpForm
template_name = "registration/signup.html"