{%- if resource.contact_group_email %}
Mailing List
{%- endif %}
{%- if resource.contact_page %}
Contact Page
{%- endif %}
-
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.owners %}
- Identifier Space Owner{% if resource.owners | length > 1 %}s{% endif %}
{% for owner in resource.owners %}
-
{{ owner.name }}
{% 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 %}