[discgolf] Add new scrobble type
Some checks failed
build / test (push) Has been cancelled

This commit is contained in:
2026-06-20 00:37:18 -04:00
parent 31888a85cb
commit 1f5fada8b1
31 changed files with 922 additions and 5 deletions

View File

@ -0,0 +1,14 @@
from django.urls import path
from discgolf import views
app_name = "discgolf"
urlpatterns = [
path("disc-golf/", views.DiscGolfCourseListView.as_view(), name="course_list"),
path(
"disc-golf/<slug:slug>/",
views.DiscGolfCourseDetailView.as_view(),
name="course_detail",
),
]