Group management enhacement

This commit is contained in:
2018-04-26 18:33:10 +02:00
committed by Bartuccio Antoine
parent a6f76f5279
commit f6553a8f52
4 changed files with 47 additions and 7 deletions

View File

@ -64,6 +64,11 @@ urlpatterns = [
GroupDeleteView.as_view(),
name="group_delete",
),
url(
r"^group/(?P<group_id>[0-9]+)/detail$",
GroupDetailView.as_view(),
name="group_detail",
),
# User views
url(r"^user/$", UserListView.as_view(), name="user_list"),
url(