{% import "macros.html" as utils %}
Contacts
Contact{% if contacts and contacts|length > 1 %}s{% endif %} {% if contacts %} {% endif %}
{%- if contacts %} {%- for contact in contacts %}
{{ utils.render_author(contact, link=none) }}
{%- endfor %} {%- else %}
Missing Contact
{%- endif %} {%- if resource.contact_group_email or resource.contact_page %}
Group Contact
{%- if resource.contact_group_email %} Mailing List {%- endif %} {%- if resource.contact_page %} Contact Page {%- endif %}
{%- endif %} {%- set owners = resource.get_owners() %} {%- if owners %}
Identifier Space Owner{% if owners | length > 1 %}s{% endif %}
{%- for owner in owners %}
{{ utils.link_organization(owner) }} {% if owner.partnered %} Partnered {% endif %}
{%- endfor %} {%- endif %} {%- if contributors %}
Contributor{% if contributors | length > 1 %}s{% endif %}
{%- for badge, contributor in contributors %}
{{ badge }} {{ utils.render_author(contributor, link=url_for('metaregistry_ui.contributor', orcid=contributor.orcid)) }}
{%- endfor %} {%- endif %} {%- if reviewers %}
Reviewer{% if reviewers | length > 1 %}s{% endif %}
{%- for reviewer in reviewers %}
{{ utils.render_author(reviewer, link=url_for('metaregistry_ui.contributor', orcid=resource.reviewer.orcid)) }}
{%- endfor %} {%- endif %}