generated from westfarn/web_django_template
10 lines
144 B
Python
10 lines
144 B
Python
from django.urls import path
|
|
|
|
from analytics import views
|
|
|
|
app_name = "analytics"
|
|
|
|
urlpatterns = [
|
|
path("", views.report, name="report"),
|
|
]
|