expephalon-demomodule/demomodule/urls.py
2020-04-13 12:08:59 +02:00

5 lines
111 B
Python

from core.views import DashboardView
ADMIN_URLS = [
("", DashboardView.as_view(), "demomodule_backend"),
]