Files
vrobbler/vrobbler/apps/discgolf/urls.py
Colin Powell 1f5fada8b1
Some checks failed
build / test (push) Has been cancelled
[discgolf] Add new scrobble type
2026-06-20 00:37:18 -04:00

15 lines
314 B
Python

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",
),
]