1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 09:58:23 +02:00

View detail of a WEI

This commit is contained in:
Yohann D'ANELLO
2020-04-12 00:06:20 +02:00
parent 31d2224b8f
commit 7ad32c2afd
8 changed files with 167 additions and 4 deletions

View File

@ -3,10 +3,11 @@
from django.urls import path
from .views import WEIListView
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"),
]