Add game management features: create MusikGame model, implement game creation and detail views, and update group detail template

This commit is contained in:
Edgar P. Burkhart 2025-06-13 21:06:23 +02:00
parent 19e6eb32c8
commit f7baa91132
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
10 changed files with 275 additions and 2 deletions

View file

@ -26,4 +26,8 @@ urlpatterns = [
views.GroupRemoveMusicView.as_view(),
name="group_remove_music",
),
path(
"group/<int:pk>/start_game/", views.GameCreateView.as_view(), name="start_game"
),
path("group/game/<int:pk>/", views.GameDetailView.as_view(), name="game_detail"),
]