{% extends "base.html" %} {% load i18n plmapp_tags %} {% block content %}

{% trans "Accept invitation ?" %}

{% if invitation.guest_asked %}

{% blocktrans with invitation.guest.username as guest and invitation.group.name as group%} Accept that {{guest}} join the group {{group}} ? {% endblocktrans %}

{% else %}

{% blocktrans with invitation.group.name as group%} Accept to join the group {{group}} ? {% endblocktrans %}

{% endif %} {% with invitation_form as form %} {% include "snippets/undo_form.html" %} {% endwith %} {% endblock %}