{% set container = entity %} {% set entity_view = "overview" %} {% import "entity_macros.html" as entity_macros %} {% extends "entity_base.html" %} {% block entity_main %}
{% if (container.extra != None) and (container.extra['urls'] != None) and (container.extra['urls']|length > 0) %}
{{ container.extra['urls'][0] }}
{% elif (container.extra != None) and (container.extra['webarchive_urls'] != None) and (container.extra['webarchive_urls']|length > 0) %} {# fallback to a webarchive URL if no valid/live homepage URL #}
{{ container.extra['webarchive_urls'][0] }}
{% endif %}

{% if container.publisher != None %} Published by {{ container.publisher }} {% endif %}

Search Releases from this Container

{% if container._random_releases %}

Example Publications

{% for random_release in container._random_releases %} {{ entity_macros.release_search_result_row(random_release) }} {% endfor %} {% endif %}
{% if container._es and container._es.is_oa == True %} Open Access Publisher {% elif container._es and container._es.is_oa == False %} Not Open Access {% else %} Unknown OA Status {% endif %}
{% if container._stats %}
{{ "{:,}".format(container._stats.total) }}
Known Releases
{% if container._stats.total >= 1 %} {% set frac_kbart = container._stats.in_kbart/container._stats.total %} {% set frac_preserved = container._stats.is_preserved/container._stats.total %} {% set frac_web = container._stats.in_web/container._stats.total %}
{{ (frac_web*100)|int }}%
{{ "{:,}".format(container._stats.in_web) }} preserved and available (bright)
{{ (frac_preserved*100)|int }}%
{{ "{:,}".format(container._stats.is_preserved) }} preserved at all (bright or dark)
{{ (frac_kbart*100)|int }}%
{{ "{:,}".format(container._stats.in_kbart ) }} preserved by Keeper (dark) {% endif %}
{% endif %} {% if container.issnl != None or container.wikidata_qid != None %}
{% if container.issnl != None %} ISSN-L?  {{ container.issnl }} {% endif %} {% if container.extra != None and container.extra.issnp != None and (container.extra.issnp|length > 0) %}
Print:  {{ container.extra.issnp }} {% endif %} {% if container.extra != None and container.extra.issne != None and (container.extra.issne|length > 0) %}
Electronic:  {{ container.extra.issne }} {% endif %}
{% if container.wikidata_qid != None %} Wikidata  {{ container.wikidata_qid }} {% endif %}
{% endif %} {% if (container._es and container._es != None) %}
Directory Listings
{% if container._es.in_doaj == True %} In DOAJ
{% elif container._es.in_doaj == False %} Not in DOAJ
{% endif %} {% if container._es.in_road == True %} In ISSN ROAD
{% elif container._es.in_road == False %} Not in ISSN ROAD
{% endif %} {% if container._es.in_kbart == True %} In Keepers Registery
{% elif container._es.in_kbart == False %} Not in Keepers Registry
{% endif %} {% if container.extra and container.extra.sherpa_romeo and container.extra.sherpa_romeo.color %} SHERPA/RoMEO color: {{ container.extra.sherpa_romeo.color }} {% endif %}
{% endif %}
Lookup Links
{% if container.issnl %} ISSN Portal
The Keepers Registry (preservation)
SHERPA/RoMEO (access policies)
{% endif %} {% if not container.wikidata_qid %} wikidata.org
{% endif %}
{{ entity_macros.fatcat_bits(entity, "container", "", editgroup) }}
{% endblock %}