@@ -608,9 +608,9 @@ def _normalize_authors(pub):
608608 return None
609609
610610
611- def article_links_list (request ):
611+ def works_list (request ):
612612 """
613- Public page that lists a link for every publication :
613+ Public page that lists a link for every work :
614614 - DOI present -> /article/<doi> (site-local landing page)
615615 - no DOI -> fall back to Publication.url (external/original)
616616 """
@@ -621,10 +621,10 @@ def article_links_list(request):
621621 links .append ({"title" : pub .title , "href" : reverse ("optimap:article-landing" , args = [pub .doi ])})
622622 elif pub .url :
623623 links .append ({"title" : pub .title , "href" : pub .url })
624- return render (request , "article_links_list .html" , {"links" : links })
624+ return render (request , "works .html" , {"links" : links })
625625
626626
627- def article_landing (request , doi ):
627+ def work_landing (request , doi ):
628628 """
629629 Landing page for a publication with a DOI.
630630 Embeds a small Leaflet map when geometry is available.
@@ -646,4 +646,4 @@ def article_landing(request, doi):
646646 "timeperiod_label" : _format_timeperiod (pub ),
647647 "authors_list" : _normalize_authors (pub ),
648648 }
649- return render (request , "article_landing .html" , context )
649+ return render (request , "work_landing_page .html" , context )
0 commit comments