Skip to content
Snippets Groups Projects
Commit edbfb724 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Refactor submission pk paths to be tidier

parent be2fd92f
No related branches found
No related tags found
No related merge requests found
......@@ -26,9 +26,11 @@ submission_urls = ([
path('edit/', SubmissionEditView.as_view(), name="edit"),
path('sealed/', SubmissionSealedView.as_view(), name="sealed"),
])),
path('<int:submission_pk>/', include('opentech.apply.review.urls', namespace="reviews")),
path('<int:submission_pk>/', include('opentech.apply.determinations.urls', namespace="determinations")),
path('<int:submission_pk>/revisions/', include(revision_urls, namespace="revisions")),
path('<int:submission_pk>/', include([
path('', include('opentech.apply.review.urls', namespace="reviews")),
path('', include('opentech.apply.determinations.urls', namespace="determinations")),
path('revisions/', include(revision_urls, namespace="revisions")),
])),
], 'submissions')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment