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('/edit/', views.card_edit, name='edit'), path('/delete/', views.card_delete, name='delete'), path('preview//', 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//edit/', views.background_edit, name='background_edit'), path('backgrounds/download-all/', views.backgrounds_download_all, name='backgrounds_download_all'), path('backgrounds//activate/', views.background_activate, name='background_activate'), path('backgrounds//delete/', views.background_delete, name='background_delete'), path('overview/', views.cards_overview, name='overview'), path('overview/bulk-update/', views.cards_bulk_update, name='overview_bulk_update'), path('overview/create-images/', views.cards_bulk_create_images, name='overview_create_images'), 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'), ]