{% extends "base.html" %} {% import "macros.html" as utils %} {% block title %}{{ config.METAREGISTRY_TITLE }} - {{ entry.name }}{% endblock %} {% block container %}
Collections {{ entry.name }}
Suggest
{%- if entry.logo %} logo for {{ entry.name }} {%- endif %} {{ markdown(entry.description) | safe }}
Identifier
{{ identifier }}
{%- if entry.keywords %}
Keywords
{%- for keyword in entry.keywords|sort %} {{ keyword }} {%- endfor %}
{%- endif %} {%- if entry.maintainers %}
Maintainers
{%- for maintainer in entry.maintainers %}
{{ maintainer.name }} {{ utils.orcid_img() }}
{%- endfor %} {%- endif %} {%- if entry.contributors %}
Contributors
{%- for contributor in entry.contributors %}
{% if contributor.orcid %} {{ contributor.name }} {{ utils.orcid_img() }} {% else %} {{ contributor.name }} {% endif %}
{%- endfor %} {%- endif %} {%- if entry.organizations %}
Organizations
{%- for organization in entry.organizations %}
{{ organization.name }} {%- if organization.ror -%} {{ utils.ror_img() }} {%- endif %}
{%- endfor %} {%- endif %}
Size
{{ entry.resources | length }}
{% if entry.references %}
References
{% for reference in entry.references %}
{{ reference }}
{% endfor %} {% endif %} {%- if entry.mappings %}
Related Collections
{%- for mapping in entry.mappings %}
{{ mapping.curie }}
{%- endfor %} {%- endif %}
Downloads
{%- for metaprefix, target_registry in manager.metaregistry.items() %} {{ target_registry.get_short_name() }} {%- endfor %} OLS Configurations
{%- for annotated_prefix in entry.get_annotated_prefixes() %} {%- set resource = resources[annotated_prefix.prefix] %} {% endfor %}
Prefix Name License
{{ resource.prefix }} {{ resource.get_name() }} {{ utils.render_resource_warnings(resource) }} {%- if first_party[resource.prefix] %} First Party {%- endif %} {%- if annotated_prefix.comment %}
{{ annotated_prefix.comment}} {%- endif %}
{%- set license = resource.get_license() %} {%- if not license %} {%- elif license.startswith("http") %} Custom {%- else %} {{ license }} {%- endif %}
{%- if indirect %}
Indirect Dependencies
{% for indirect_resource in indirect %} {% endfor %}
Prefix Name
{{ indirect_resource.prefix }} {{ indirect_resource.get_name() }} {{ utils.render_resource_warnings(indirect_resource) }}
{%- endif %} {% endblock %}