This commit is contained in:
Ross
2025-12-04 22:36:27 +00:00
parent d299f7ffd3
commit fbfffd1a6e
11 changed files with 186 additions and 0 deletions
+4
View File
@@ -8,4 +8,8 @@ urlpatterns = [
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'),
path('backgrounds/', views.background_list, name='backgrounds'),
path('backgrounds/create/', views.background_create, name='background_create'),
path('backgrounds/<int:pk>/activate/', views.background_activate, name='background_activate'),
path('backgrounds/<int:pk>/delete/', views.background_delete, name='background_delete'),
]