Add group detail link and implement game removal functionality in views
This commit is contained in:
parent
122ae40570
commit
dfe312d47d
4 changed files with 47 additions and 7 deletions
|
@ -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"
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue