#101 Team data view

* adds overview of shared teams on object detail view
* adds team data view if button is clicked
This commit is contained in:
2022-02-18 14:06:51 +01:00
parent aa675aa046
commit f05bb6ff5c
11 changed files with 193 additions and 93 deletions

View File

@@ -16,6 +16,7 @@ urlpatterns = [
path("token/api", api_token_view, name="api-token"),
path("contact/<id>", contact_view, name="contact"),
path("team/", index_team_view, name="team-index"),
path("team/<id>", data_team_view, name="team-data"),
path("team/new", new_team_view, name="team-new"),
path("team/<id>/edit", edit_team_view, name="team-edit"),
path("team/<id>/remove", remove_team_view, name="team-remove"),