{% import "macros.html" as utils %}
Contacts
Contact {% if contact %} {% endif %}
{% if contact %} {{ utils.render_author(contact, link=none) }} {% else %} Missing Contact {% endif %}
{%- for secondary_contact in resource.contact_extras or [] %}
{{ utils.render_author(secondary_contact, link=none) }}
{%- endfor %} {%- 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 resource.contributor or resource.contributor_extras %}
Contributors
{% if resource.contributor %}
submitter {{ utils.render_author(resource.contributor, link=url_for('metaregistry_ui.contributor', orcid=resource.contributor.orcid)) }}
{% endif %} {% for contributor in resource.contributor_extras or [] %}
contributor {{ utils.render_author(contributor, link=url_for('metaregistry_ui.contributor', orcid=contributor.orcid)) }}
{% endfor %} {% endif %} {% if resource.reviewer %}
Reviewer
{{ utils.render_author(resource.reviewer, link=url_for('metaregistry_ui.contributor', orcid=resource.reviewer.orcid)) }}
{%- for reviewer in resource.reviewer_extras or [] %}
{{ utils.render_author(reviewer, link=url_for('metaregistry_ui.contributor', orcid=reviewer.orcid)) }}
{%- endfor %} {% endif %}