{% extends 'settings/admin_layout.html' %} {% load i18n %} {% load humanize %} {% block header %}{% trans "Invite Requests" %}{% endblock %} {% block panel %}

{% trans "Invite Requests" %}

{% if not requests %} {% endif %} {% for req in requests %} {% endfor %}
{% trans "Date" %} {% trans "Email" %} {% trans "Status" %} {% trans "Action" %}
{% trans "No requests" %}
{{ req.created_date | naturaltime }} {{ req.email }} {% if req.invite.times_used %} {% trans "Accepted" %} {% elif req.invite %} {% trans "Sent" %} {% else %} {% trans "Requested" %} {% endif %} {% if req.invite and not req.invite.times_used %} {% else %}
{% csrf_token %}
{% endif %}
{% include 'snippets/pagination.html' with page=requests path=request.path %}
{% endblock %}