Add group detail link and implement game removal functionality in views

This commit is contained in:
Edgar P. Burkhart 2025-06-13 23:16:53 +02:00
parent 122ae40570
commit dfe312d47d
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
4 changed files with 47 additions and 7 deletions

View file

@ -26,6 +26,11 @@ urlpatterns = [
views.GroupRemoveMusicView.as_view(),
name="group_remove_music",
),
path(
"group/remove_game/<int:pk>/",
views.GroupRemoveGameView.as_view(),
name="group_remove_game",
),
path(
"group/<int:pk>/start_game/", views.GameCreateView.as_view(), name="start_game"
),