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:
@ -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"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user