{% load i18n %}
  • {% trans "About" %}

    {% if resource.owner == resource.poc and resource.owner == resource.metadata_author %}

    {% trans "Owner, Point of Contact, Metadata Author" %}

    {% with resource.owner as profile %} {% include "people/_profile_about_item.html" %} {% endwith %} {% else %}

    {% trans "Owner" %}

    {% with resource.owner as profile %} {% include "people/_profile_about_item.html" %} {% endwith %}

    {% trans "Point of Contact" %}

    {% with resource.poc as profile %} {% include "people/_profile_about_item.html" %} {% endwith %}

    {% trans "Metadata Author" %}

    {% with resource.metadata_author as profile %} {% include "people/_profile_about_item.html" %} {% endwith %} {% endif %}