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

Add lorem ipsum, update WEI

This commit is contained in:
Yohann D'ANELLO
2020-04-12 02:30:48 +02:00
parent 8fe060847f
commit 69b7f31eed
9 changed files with 112 additions and 10 deletions

View File

@ -3,11 +3,12 @@
from django.urls import path
from .views import WEIListView, WEIDetailView
from .views import WEIListView, WEIDetailView, WEIUpdateView
app_name = 'wei'
urlpatterns = [
path('list/', WEIListView.as_view(), name="wei_list"),
path('detail/<int:pk>/', WEIDetailView.as_view(), name="wei_detail"),
path('update/<int:pk>/', WEIUpdateView.as_view(), name="wei_update"),
]