Restoroo/core/urls.py
Kumi 6799a96334
Start frontend implementation
Implement base template handling, views
2023-04-22 14:18:58 +00:00

14 lines
No EOL
332 B
Python

from django.urls import path
from django.conf import settings
from .views import (
CustomerDashboardView,
BaseTestView,
)
urlpatterns = [
path('manager/dashboard/', CustomerDashboardView.as_view(), name='dashboard'),
]
if settings.DEBUG:
urlpatterns.append(path('test/base/', BaseTestView.as_view(), name='base'))