mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-06-22 02:18:21 +02:00
Wrapped apps
This commit is contained in:
13
apps/wrapped/urls.py
Normal file
13
apps/wrapped/urls.py
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = 'wrapped'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.WrappedListView.as_view(), name='wrapped_list'),
|
||||
path('<int:pk>/', views.WrappedDetailView.as_view(), name='wrapped_detail'),
|
||||
]
|
Reference in New Issue
Block a user