From 063be7d54099f4899ffa66f421b1a0e107646b3c Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 15 Feb 2022 13:43:20 -0800 Subject: containers: small fixes to browse view --- python/fatcat_web/templates/container_view_browse.html | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'python') diff --git a/python/fatcat_web/templates/container_view_browse.html b/python/fatcat_web/templates/container_view_browse.html index f6a74a2d..a2ad251b 100644 --- a/python/fatcat_web/templates/container_view_browse.html +++ b/python/fatcat_web/templates/container_view_browse.html @@ -15,6 +15,8 @@ + {# NOTE: this section is pretty nested, with complex behavior; it could be hard to edit and understand #} + {# TODO: these "sorts" are lexical, not numeric, which causes problems #} {% for year in data.keys()|sort|reverse %} {% set year_loop = loop %} {% for volume in data[year].keys()|sort|reverse %} @@ -39,12 +41,12 @@ {% if issue != '000_unknown' %} - Issue {{ issue }} + Issue {{ issue }} {% endif %} - {{ data[year][volume][issue] }} releases + {{ "{:,}".format(data[year][volume][issue]) }} releases {% endfor %} @@ -88,7 +90,10 @@ {{ browse_releases(releases_found) }} {% elif entity._browse_volume_year %}
-

Contents by Year and Volume

+

Publications by Year, Volume, and Issue

+

This table includes content which does not have article-level metadata + about volume or issue, but at least the year of publication must be known. + "Stub" releases (eg, spam or duplicate DOIs) are not listed. {{ browse_year_volume_issue_table(entity, entity._browse_volume_year) }}

{% endif %} -- cgit v1.2.3