1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 16:38:23 +02:00

Add link to the drawing interface

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2023-03-26 11:58:35 +02:00
parent 18bd2c7c18
commit 5b1374bf1b
2 changed files with 6 additions and 1 deletions

View File

@ -9,6 +9,6 @@ from .views import DisplayContentView, DisplayView
app_name = "draw"
urlpatterns = [
path('', DisplayView.as_view()),
path('', DisplayView.as_view(), name='index'),
path('content/<int:pk>/', DisplayContentView.as_view()),
]