kumify/frontend/views.py
Kumi f5df828403 Add registration form
Prepare for closed registrations (will be default probably)
2020-12-31 22:17:02 +01:00

29 lines
990 B
Python

from django.views.generic import TemplateView, CreateView
from django.contrib.auth.mixins import LoginRequiredMixin
from django.contrib.auth.forms import UserCreationForm
from django.contrib.auth import get_user_model, login
from django.urls import reverse_lazy
class DashboardView(LoginRequiredMixin, TemplateView):
template_name = "frontend/dashboard.html"
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["title"] = "Dashboard"
context["subtitle"] = "An overview of everything going on in your Kumify account."
return context
class UserRegistrationView(CreateView):
form_class = UserCreationForm
model = get_user_model()
template_name = "registration/registration_form.html"
def form_valid(self, form):
ret = super().form_valid(form)
login(self.request, self.object)
return ret
def get_success_url(self):
return reverse_lazy("frontend:dashboard")