aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-02-15 13:43:20 -0800
committerBryan Newbold <bnewbold@robocracy.org>2022-02-15 13:47:59 -0800
commit063be7d54099f4899ffa66f421b1a0e107646b3c (patch)
treea4f40762525a506d47cd10d997d6eeb9106d5cd8 /python
parenta7e66854de844eb6eb663e07d65f0b140ab8f149 (diff)
downloadfatcat-063be7d54099f4899ffa66f421b1a0e107646b3c.tar.gz
fatcat-063be7d54099f4899ffa66f421b1a0e107646b3c.zip
containers: small fixes to browse view
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_web/templates/container_view_browse.html11
1 files changed, 8 insertions, 3 deletions
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 @@
</tr>
</thead>
<tbody>
+ {# 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 @@
<td>
{% if issue != '000_unknown' %}
- <a href="/container/{{ entity.ident }}/browse?year={{ year }}&volume={{ volume }}&issue={{ issue }}">Issue {{ issue }}</a>
+ <a href="/container/{{ entity.ident }}/browse?year={{ year }}{% if volume != '000_unknown' %}&volume={{ volume }}{% endif %}&issue={{ issue }}">Issue {{ issue }}</a>
{% endif %}
</td>
<td class="right aligned">
- <a href="/container/{{ entity.ident }}/browse?year={{ year }}&volume={{ volume }}&issue={{ issue }}">{{ data[year][volume][issue] }} releases</a>
+ <a href="/container/{{ entity.ident }}/browse?year={{ year }}{% if volume != '000_unknown' %}&volume={{ volume }}{% endif %}{% if issue != '000_unknown' %}&issue={{ issue }}{% endif %}">{{ "{:,}".format(data[year][volume][issue]) }} releases</a>
</td>
</tr>
{% endfor %}
@@ -88,7 +90,10 @@
{{ browse_releases(releases_found) }}
{% elif entity._browse_volume_year %}
<div class="ui container text">
- <h3>Contents by Year and Volume</h3>
+ <h3>Publications by Year, Volume, and Issue</h3>
+ <p>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) }}
</div>
{% endif %}