Add "Public" to url for public website

This commit is contained in:
sergio_gimenez 2024-10-22 07:34:44 +02:00
parent 54f3bcd7f3
commit b65056ad92
1 changed files with 1 additions and 1 deletions

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"),
]