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

11 lines
274 B
Python

from .views import DashboardView, UserRegistrationView
from django.urls import path, include
app_name = "frontend"
urlpatterns = [
path('', DashboardView.as_view(), name="dashboard"),
path('accounts/register/', UserRegistrationView.as_view(), name="register"),
]