{% load i18n plmapp_tags %}
{% if display_group %} {% endif %} {% for inv in pending_invitations %} {% if display_group %} {% endif %} {% with inv.guest as guest %} {% endwith %} {# allow valid user to resend the invitation #} {% if inv.guest_asked and inv.guest == user or not inv.guest_asked and inv.owner == user%} {% endif %} {# allow valid user to accept/refuse the invitation #} {% if inv.guest_asked and inv.owner == user or not inv.guest_asked and inv.guest == user %} {% endif %} {% endfor %}
{% trans "Group" %} {% trans "Username" %} {% trans "First name" %} {% trans "Last name" %} {% trans "Date of the invitation" %}
{{ inv.group.name }} {{ guest.username }} {{ guest.first_name }} {{ guest.last_name }} {{ inv.ctime|date:"r" }}
{% csrf_token %}
{% trans "Accept" %} {% trans "Refuse" %}