1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-07 04:53:02 +00:00

15 lines
295 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()),
path('content/<int:pk>/', DisplayContentView.as_view()),
]