repos
/ analytics-django master

analytics-django

mirror archived upstream

Self-hostable website analytics on Django: a straightforward collector API, dashboards, a world map, and PDF reports.

analyticsdjangodockerhandcodedpythonself-hostedsqliteviteweb-analytics

490 B · 13 lines · Python Raw History
 1from django.urls import path
 2
 3from . import views
 4
 5
 6urlpatterns = [
 7    path('<uuid:property_id>/', views.property, name='property'),
 8    path('<uuid:property_id>/delete/', views.property_delete, name='property_delete'),
 9    path('<uuid:property_id>/cards/', views.adjust_custom_event_cards, name='adjust_custom_event_cards'),
10    path('<uuid:property_id>/is-public/', views.adjust_is_public_property, name='adjust_is_public_property'),
11    path('', views.properties, name='properties'),
12]