Implement link group detail screen with profit simulation

This commit is contained in:
2023-03-18 14:06:50 +00:00
parent bbd25c7450
commit 8c490d6ee3
11 changed files with 292 additions and 21 deletions

View File

@@ -252,4 +252,9 @@ urlpatterns = [
linkgroups.LinkGroupDelete.as_view(),
name="linkgroup_delete",
),
path(
"links/<str:type>/info/<str:pk>/",
linkgroups.LinkGroupInfo.as_view(),
name="linkgroup_info",
),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)