{% load i18n %}
{% spaceless %}
{% if subscriber.email %}
{{ subscriber.email }}
{% else %}
{{ subscriber.user.staff.get_full_name }}
{% endif %}
{% if subscriber.user.staff.affiliation == "external" %}
{%trans "внш"%}
{% endif %}
{% if subscriber.get_access_reason %}
{% endif %}
{% if subscriber.stype == 'inbox' %}{% trans "In inbox" %}{% endif %}
{% if subscriber.stype == 'imap' %}{% trans "In imap folder" %}{% endif %}
{% if subscriber.stype == 'both' %}{% trans "In inbox and imap folder" %}{% endif %}
{% if subscriber.stype == 'separate' %}{% trans "In a separate folder" %}{% endif %}
{% endspaceless %}