Skip to content

Commit

Permalink
move /popup up so it doesn't load DocumentProvisionDetailView
Browse files Browse the repository at this point in the history
  • Loading branch information
goose-life committed Jan 6, 2025
1 parent 2a21220 commit 660f9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indigo_app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@

path('documents/<int:doc_id>/', documents.DocumentDetailView.as_view(), name='document'),
path('documents/<int:doc_id>/choose-provision', documents.ChooseDocumentProvisionView.as_view(), name='choose_document_provision'),
path('documents/<int:doc_id>/<str:eid>', documents.DocumentProvisionDetailView.as_view(), name='document_provision'),
path('documents/<int:doc_id>/popup', cache_page(POPUP_CACHE_SECS)(documents.DocumentPopupView.as_view()), name='document_popup'),
path('documents/<int:doc_id>/<str:eid>', documents.DocumentProvisionDetailView.as_view(), name='document_provision'),

path('tasks/', tasks.UserTasksView.as_view(), name='my_tasks'),
path('tasks/all/', tasks.AllTasksView.as_view(), name='all_tasks'),
Expand Down

0 comments on commit 660f9ee

Please sign in to comment.