from django.urls import path from . import views app_name = 'presentations' urlpatterns = [ path('', views.presentation_list, name='list'), path('generate/', views.presentation_generate, name='generate'), path('new/', views.presentation_create, name='create'), path('/', views.presentation_detail, name='detail'), path('/edit/', views.presentation_edit, name='edit'), path('/delete/', views.presentation_delete, name='delete'), path('/present/', views.presentation_view, name='present'), path('/export/pdf/', views.export_pdf, name='export_pdf'), path('/export/pptx/', views.export_pptx, name='export_pptx'), path('/slides/add/', views.slide_add, name='slide_add'), path('/slides//edit/', views.slide_edit, name='slide_edit'), path('/slides//delete/', views.slide_delete, name='slide_delete'), path('/slides/reorder/', views.slides_reorder, name='slides_reorder'), path('templates/', views.template_list, name='template_list'), path('templates/create/', views.template_create, name='template_create'), path('templates//', views.template_detail, name='template_detail'), path('templates//delete/', views.template_delete, name='template_delete'), path('templates//parse/', views.template_parse, name='template_parse'), path('templates//generate/', views.template_generate, name='template_generate'), path('templates//slides/create/', views.template_slide_create, name='template_slide_create'), path('templates//slides//update/', views.template_slide_update, name='template_slide_update'), path('templates//slides//delete/', views.template_slide_delete, name='template_slide_delete'), path('templates//slides/reorder/', views.template_slide_reorder, name='template_slide_reorder'), ]