1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 10:13:02 +00:00
Emmy D'Anello 5b1374bf1b
Add link to the drawing interface
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-04 10:25:52 +02:00

15 lines
309 B
Python

# Copyright (C) 2023 by Animath
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from .views import DisplayContentView, DisplayView
app_name = "draw"
urlpatterns = [
path('', DisplayView.as_view(), name='index'),
path('content/<int:pk>/', DisplayContentView.as_view()),
]