{% 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 %}
Contributors
{%- for author in entry.authors %}
{{ author.name }} {{ utils.orcid_img() }}
{%- endfor %} {%- if entry.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 %}
Download External Mappings
{%- for metaprefix, target_registry in manager.metaregistry.items() %} {{ target_registry.get_short_name() }} {%- endfor %}
{% for prefix in entry.resources %} {% endfor %}
Prefix Name
{{ prefix }} {{ resources[prefix].get_name() }} {{ utils.render_resource_warnings(resources[prefix]) }}
{%- 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 %}