Implement more detailed link group withdrawal simulations

This commit is contained in:
2023-05-05 14:39:02 +01:00
parent 35607898f0
commit 0be1b98072
7 changed files with 157 additions and 47 deletions

View File

@@ -272,4 +272,9 @@ urlpatterns = [
linkgroups.LinkGroupSimulation.as_view(),
name="linkgroup_simulate",
),
path(
"links/<str:type>/withdraw/<str:pk>/",
linkgroups.LinkGroupWithdraw.as_view(),
name="linkgroup_withdraw",
),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)