1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 13:33:02 +00:00

15 lines
309 B
Python
Raw Normal View History

# 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()),
]