Skip to content
Snippets Groups Projects
Commit 32d04891 authored by Marco De Donno's avatar Marco De Donno
Browse files

Patch the admin segment list page navigation

parent 592ca8a4
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@
$( "#navloc" ).append(
$( "<a />" )
.attr( "href", "{{ url_for( 'submission.submission_list' ) }}" )
.attr( "href", "{{ url_for( 'submission.admin_submission_list' ) }}" )
.text( "Submissions" )
)
.append(
......@@ -81,7 +81,7 @@
)
.append(
$( "<a />" )
.attr( "href", "{{ url_for( 'submission.submission_upload_tplp', submission_id = submission_id ) }}" )
.attr( "href", "{{ url_for( 'submission.admin_tenprint_list', submission_id = submission_id ) }}" )
.text( "{{ donor_username }}" )
)
.append(
......@@ -89,15 +89,7 @@
)
.append(
$( "<a />" )
.attr( "href", "{{ url_for( 'submission.submission_tenprint_list', submission_id = submission_id ) }}" )
.text( "Tenprints" )
)
.append(
$( "<span />" ).text( ">" )
)
.append(
$( "<a />" )
.attr( "href", "{{ url_for( 'submission.submission_tenprint', submission_id = submission_id, tenprint_id = tenprint_id ) }}" )
.attr( "href", "{{ url_for( 'submission.admin_tenprint', submission_id = submission_id, tenprint_id = tenprint_id ) }}" )
.text( "{{ tenprint_id }}" )
)
.append(
......
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