diff options
author | Martin Czygan <martin@archive.org> | 2020-10-14 18:56:30 +0000 |
---|---|---|
committer | Martin Czygan <martin@archive.org> | 2020-10-14 18:56:30 +0000 |
commit | 27ed76790da722f078e51c46b1751df089968e4c (patch) | |
tree | 8b0759ae15b9bd8d6b31085147cac3593df6f323 /python/fatcat_web/templates/container_view_coverage.html | |
parent | dc7de8b93810cac6c2494f89ccbc49f32c90d6c0 (diff) | |
parent | bde55dc5c7dfd1cb8c2863127c4bc3675a22ddfa (diff) | |
download | fatcat-27ed76790da722f078e51c46b1751df089968e4c.tar.gz fatcat-27ed76790da722f078e51c46b1751df089968e4c.zip |
Merge branch 'bnewbold-web-tweaks-20201013' into 'master'
web coverage tweaks 20201013
See merge request webgroup/fatcat!86
Diffstat (limited to 'python/fatcat_web/templates/container_view_coverage.html')
-rw-r--r-- | python/fatcat_web/templates/container_view_coverage.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/container_view_coverage.html b/python/fatcat_web/templates/container_view_coverage.html index 5ec31e73..2da1ab07 100644 --- a/python/fatcat_web/templates/container_view_coverage.html +++ b/python/fatcat_web/templates/container_view_coverage.html @@ -17,6 +17,17 @@ {{ entity_macros.preservation_bar(container._stats.preservation, extra_class="large") }} {{ entity_macros.preservation_table(container._stats.preservation) }} {% endif %} + <p> + {% if container.extra and container.extra.kbart %} + There seem to be at least some "dark" preservation holdings in: + {% for k, v in container.extra.kbart.items() %} + <code>{{ k }}</code>{{ ", " if not loop.last }} + {% endfor %} + . + {% endif %} + {% if container.issnl %} + Our metadata may not be up to date, but you can verify preservation holdings in <a href="https://keepers.issn.org/?q=api/search&search[]=MUST=allissn={{ container.issnl }}&search[]=MUST_EXIST=keepers">Keepers Registery</a> (click "Archival Status"). + {% endif %} </div> </div> </div> |