This commit is contained in:
Ross
2025-12-05 22:31:16 +00:00
parent ceea07d0b3
commit 322c22f14e
4 changed files with 4 additions and 70 deletions
+1 -2
View File
@@ -8,8 +8,6 @@ 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('<int:pk>/import/', views.import_facts_for_card, name='import'),
path('<int:pk>/import/apply/', views.apply_import_for_card, name='import_apply'),
path('preview/<int:pk>/', views.preview_card, name='preview'),
path('backgrounds/', views.background_list, name='backgrounds'),
path('backgrounds/create/', views.background_create, name='background_create'),
@@ -21,4 +19,5 @@ urlpatterns = [
path('export-table/', views.export_table, name='export_table'),
path('import/paste/', views.import_from_paste, name='import_paste'),
path('import/apply/', views.apply_bulk_import, name='import_apply_bulk'),
]