diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-04 12:04:08 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-04 12:04:08 -0700 |
commit | f4da02fae5ebd179a0b3af4ff179543813fa146b (patch) | |
tree | 3f14fba54e6279a1bc042831ad4b7e273dc71f15 /python/fatcat_web/templates/container_view_coverage.html | |
parent | b0223b6e10706554e55e5d90f36d1946d285c3e2 (diff) | |
download | fatcat-f4da02fae5ebd179a0b3af4ff179543813fa146b.tar.gz fatcat-f4da02fae5ebd179a0b3af4ff179543813fa146b.zip |
start container coverage page
Diffstat (limited to 'python/fatcat_web/templates/container_view_coverage.html')
-rw-r--r-- | python/fatcat_web/templates/container_view_coverage.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/container_view_coverage.html b/python/fatcat_web/templates/container_view_coverage.html new file mode 100644 index 00000000..eb9dba8a --- /dev/null +++ b/python/fatcat_web/templates/container_view_coverage.html @@ -0,0 +1,15 @@ +{% set container = entity %} +{% set entity_view = "coverage" %} +{% set entity_type = "container" %} +{% import "entity_macros.html" as entity_macros %} +{% extends "entity_base.html" %} + +{% block entity_main %} + +<h3>Preservation Coverage By Year</h3> + +<img src="/container/{{ container.ident }}/ia_coverage_years.svg"> +<br><a href="/container/{{ container.ident }}/ia_coverage_years.json">Download as JSON</a> + +{% endblock %} + |