From 937b59b7d3adc28ce8af0789eaa00eca14c0b308 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 6 Sep 2019 15:59:05 -0700 Subject: small tweaks to coverage pages --- python/fatcat_web/graphics.py | 2 +- python/fatcat_web/templates/container_view_coverage.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'python/fatcat_web') diff --git a/python/fatcat_web/graphics.py b/python/fatcat_web/graphics.py index 0e4b7c9d..fea7eb5a 100644 --- a/python/fatcat_web/graphics.py +++ b/python/fatcat_web/graphics.py @@ -30,7 +30,7 @@ def ia_coverage_histogram(rows): chart.x_title = "Year" #chart.y_title = "Releases" chart.x_labels = [str(y['year']) for y in years] - chart.add('Available', [y['available'] for y in years]) + chart.add('via Fatcat', [y['available'] for y in years]) chart.add('Missing', [y['missing'] for y in years]) return chart diff --git a/python/fatcat_web/templates/container_view_coverage.html b/python/fatcat_web/templates/container_view_coverage.html index db435181..ffd1a447 100644 --- a/python/fatcat_web/templates/container_view_coverage.html +++ b/python/fatcat_web/templates/container_view_coverage.html @@ -54,6 +54,7 @@ {% if container._stats.total >= 1 %} +

Perpetual Access Coverage by Year

-- cgit v1.2.3