2020-12-31 21:17:02 +00:00
|
|
|
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"),
|
2020-12-31 21:17:02 +00:00
|
|
|
path('accounts/register/', UserRegistrationView.as_view(), name="register"),
|
2020-12-27 17:49:54 +00:00
|
|
|
]
|