kumify/frontend/urls.py

11 lines
274 B
Python
Raw Normal View History

from .views import DashboardView, UserRegistrationView
2020-12-27 17:49:54 +00:00
from django.urls import path, include
app_name = "frontend"
urlpatterns = [
path('', DashboardView.as_view(), name="dashboard"),
path('accounts/register/', UserRegistrationView.as_view(), name="register"),
2020-12-27 17:49:54 +00:00
]