Files
vrobbler/vrobbler/apps/moods/urls.py
Colin Powell ef4e510814
All checks were successful
build & deploy / test (push) Successful in 2m2s
build & deploy / deploy (push) Successful in 38s
[moods] Add a nice form for checking in
2026-04-28 15:44:48 -04:00

17 lines
406 B
Python

from django.urls import path
from moods import views
app_name = "moods"
urlpatterns = [
path("moods/", views.MoodListView.as_view(), name="mood_list"),
path(
"moods/<slug:slug>/",
views.MoodDetailView.as_view(),
name="mood_detail",
),
path("checkin/", views.checkin, name="checkin"),
path("checkin/success/", views.checkin_success, name="checkin_success"),
]