1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-23 15:56:37 +02:00

First interface to start draws

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2023-03-22 18:44:49 +01:00
parent 88823b5252
commit bde3758c50
8 changed files with 182 additions and 71 deletions

View File

@ -3,11 +3,12 @@
from django.urls import path
from .views import DisplayView
from .views import DisplayContentView, DisplayView
app_name = "draw"
urlpatterns = [
path('', DisplayView.as_view()),
path('content/<int:pk>/', DisplayContentView.as_view()),
]