{% 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 %} {% if container.state == "active" %}

Search Releases from this Container

{% endif %} {% 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._stats %}
{{ "{:,}".format(container._stats.total) }}
Known Releases
{% if container._es and container._es.is_oa == True %}
Open Access Publication
{% endif %} {% if container._stats.total >= 1 %}
Preservation Status
{{ entity_macros.preservation_bar(container._stats.preservation) }} {{ entity_macros.preservation_small_table(container._stats.preservation) }}
Work Types
{% for type_row in container._stats.release_type %}
{% if type_row == "_unknown" %} Unknown {% else %} {{ type_row }} {% endif %} {{ "{:,}".format(container._stats.release_type[type_row]) }} {% endfor %}
{% endif %} {% endif %}
Type  {{ container.container_type or 'unknown' }}
Status  {{ container.publication_status or 'unknown' }}
{% if container.issnl != None or container.issne != None or container.issnp != None or container.wikidata_qid != None %}
{% if container.issnl != None %} ISSN-L?  {{ container.issnl }} {% endif %} {% if container.issnp or (container.extra != None and container.extra.issnp != None and (container.extra.issnp|length > 0)) %}
Print:  {{ container.issnp or container.extra.issnp }} {% endif %} {% if container.issne or (container.extra != None and container.extra.issne != None and (container.extra.issne|length > 0)) %}
Electronic:  {{ container.issne or 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.any_kbart == True %} In Keepers Registery
{% elif container._es.any_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 %} {%- if container.extra and container.extra.kbart %}
Preservation Holdings
{% for k, v in container.extra.kbart.items() %} {% if k == "lockss" %} LOCKSS: {% elif k == "clockss" %} CLOCKSS: {% elif k == "hathitrust" and container.issnl %} HathiTrust: {% elif k == "portico" and container.issnl %} Portico: {% else %} {{ k }}: {% endif %} years {% for span in v.year_spans %} {% if span|length >= 2 -%} {{ span[0] }}-{{ span[1] -}} {% elif span|length == 1 -%} {{ span[0] -}} {% endif -%} {{- ", " if not loop.last }} {% endfor %}
{% endfor %}
{% 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 %}