{% load util %} {% load i18n %} {% if data.poc_set or permissions.can_create %}
{% trans "Contact Information" %}
{% if data.poc_hidden %}
{% if not request.user.is_authenticated %} {% trans "Some of this network's contacts are hidden because they are only visible to authenticated users and you are currently not logged in." %} {% elif not request.user.is_verified_user %} {% trans "Some of this network's contacts are hidden because your user account is not affiliated with any organization." %} {% endif %}
{% endif %}
{% trans "Role" %}
{% trans "Name" %}
{% trans "Visiblity" %}
{% trans "Phone" %}
{% trans "E-Mail" %}
{% for p in data.poc_set %}
{{ instance.id }}
{{ p.role }}
{% if permissions.can_delete %} × {% endif %}
{{ p.role }}
{{ p.name }}
{% if p.phone %} {{ p.phone }} {% endif %}
{% endfor %}
{% if permissions.can_create %}
{{ instance.id }}
{% trans "Role" %}
{% trans "Name" %}
{% trans "Email" %}
{% trans "Phone" %}
{% trans "Visibility" %}
{% endif %}
{% elif data.poc_hidden %}
{% trans "Contact Information" %}
{% if not request.user.is_authenticated %} {% trans "Some of this network's contacts are hidden because they are only visible to authenticated users and you are currently not logged in." %} {% elif not request.user.is_verified_user %} {% trans "Some of this network's contacts are hidden because your user account is not affiliated with any organization." %} {% endif %}
{% endif %} {% if permissions.can_write %} {% endif %}