This commit is contained in:
Ross
2025-12-04 21:01:45 +00:00
commit 75398cf53f
28 changed files with 599 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from django.urls import path
from . import views
app_name = 'cards'
urlpatterns = [
path('', views.card_list, name='list'),
path('create/', views.card_create, name='create'),
path('<int:pk>/edit/', views.card_edit, name='edit'),
path('<int:pk>/delete/', views.card_delete, name='delete'),
]