academon/core/urls/frontend.py
Kumi c04d9410e9
Preparation for DataTables
More sidebar items
Restructuring
2022-09-16 15:18:04 +00:00

10 lines
311 B
Python

from django.urls import path, reverse_lazy
from django.views.generic import RedirectView
from ..views.frontend import DashboardView, NotImplementedView
urlpatterns = [
path("dashboard/", DashboardView.as_view(), name="dashboard"),
path("", RedirectView.as_view(url=reverse_lazy("core:dashboard"))),
]