{% load i18n %} {% load rules %} {% load accounts_tags %} {% has_perm 'projects.view_invite_object' request.user project as can_view_invite %} {% has_perm 'projects.delete_invite_object' request.user project as can_delete_invite %} {% if can_view_invite and invites %}

{% trans 'Invites' %}

{% for invite in invites %} {% endfor %}
{% trans 'User' %} {% trans 'E-Mail' %} {% trans 'Role' %}
{% if invite.user %} {% full_name invite.user %} {% endif %} {{ invite.email }} {{ invite.get_role_display }} {% if can_delete_invite %} {% endif %}
{% endif %}