This commit is contained in:
Ross
2025-12-06 20:46:04 +00:00
parent c30cb45fc3
commit 0e4e52fce6
5 changed files with 173 additions and 0 deletions
+2
View File
@@ -9,6 +9,8 @@ urlpatterns = [
path('<int:pk>/edit/', views.card_edit, name='edit'),
path('<int:pk>/delete/', views.card_delete, name='delete'),
path('preview/<int:pk>/', views.preview_card, name='preview'),
path('print/', views.print_cards, name='print'),
path('print/preview/', views.print_preview, name='print_preview'),
path('backgrounds/', views.background_list, name='backgrounds'),
path('backgrounds/create/', views.background_create, name='background_create'),
path('backgrounds/<int:pk>/edit/', views.background_edit, name='background_edit'),