mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 20:52:20 +01:00
11 lines
213 B
Python
11 lines
213 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "stats"
|
|
|
|
urlpatterns = [
|
|
path("", views.StatsView.as_view(), name="stats"),
|
|
path("user/", views.UserStatsView.as_view(), name="user_stats"),
|
|
]
|