{% extends "layouts/l-page_16-80.html" %} {% load i18n %} {% load mailarchive_extra %} {% block extra_title %}{{ list.name }} -{% endblock %} {% block l-page-class %}l-page_ml{% endblock %} {% block content %} {% include "mailarchive/_notifications.html" %} {% if my_requests %}

{% trans "MSG.MY_REQUESTS" %}:

{% for permission in my_requests %} {% endfor %}
{% trans "Date" %} {% trans "MSG.SUBSCRIPTION" %} {% trans "MSG.RESPONSIBLE" %}
{{ permission.modified|date:"SHORT_DATE_FORMAT" }} {{ permission.list|list_icon_href }} {% for owner in permission.list.owner_set.all %} {{ owner.user.get_profile.get_full_name }}{% if not forloop.last %}
{% endif %} {% endfor %}
{% trans "MSG.REFUSE" %}{#отказаться#}

{% trans "Total" %}: {{ my_requests.count }}

{% endif %} {% if they_requests %}

{% trans "MSG.REQUESTS_FOR_ME" %}:

{% for permission in they_requests %} {% endfor %}
{% trans "Date" %} {% trans "MSG.SUBSCRIPTION" %} {% trans "MSG.USER" %}
{{ permission.modified|date:"SHORT_DATE_FORMAT" }} {{ permission.list|list_icon_href }} {{ permission.user.get_profile.get_full_name }} {% trans "MSG.ACCEPT" %}   {% trans "MSG.REVOKE" %}

{% trans "Total" %}{#Всего#}: {{ they_requests.count }}

{% endif %} {% if not my_requests and not they_requests %}

{% trans "MSG.NO_REQUESTS" %}{#Нет запросов#}

{% endif %} {% endblock %}