1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-04-22 23:02:21 +00:00
nk20/apps/wei/urls.py
2020-04-12 00:06:20 +02:00

14 lines
341 B
Python

# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from .views import WEIListView, WEIDetailView
app_name = 'wei'
urlpatterns = [
path('list/', WEIListView.as_view(), name="wei_list"),
path('detail/<int:pk>/', WEIDetailView.as_view(), name="wei_detail"),
]