feature/90-implement-public-website-for-device #17

Merged
cayop merged 32 commits from feature/90-implement-public-website-for-device into main 2024-10-30 15:02:18 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 2636e80ece - Show all commits

View File

@ -9,6 +9,6 @@ urlpatterns = [
path("<str:pk>/", views.DetailsView.as_view(), name="details"),
path("<str:pk>/annotation/add", views.AddAnnotationView.as_view(), name="add_annotation"),
path("<str:pk>/document/add", views.AddDocumentView.as_view(), name="add_document"),
path("<str:pk>/web/", views.DeviceWebView.as_view(), name="device_web"),
path("<str:pk>/public/", views.DeviceWebView.as_view(), name="device_web"),
]