You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/jdav_web/members/templates/members/reject_invitation.html

32 lines
944 B
HTML

{% extends "members/base.html" %}
{% load i18n %}
{% load static %}
{% block title %}
{% trans "Reject invitation" %}
{% endblock %}
{% block content %}
<h1>{% trans "Reject invitation" %}</h1>
<p>{% blocktrans %}You were invited to a trial group meeting of the group {{ groupname }}. On this
page you can reject this invitation.{% endblocktrans %}
</p>
<p>{% blocktrans %}You may either reject this specific invitation, because
the time of the group does not fit your calendear, or unregister from the mailing list altogether.{% endblocktrans %}
</p>
<form action="" method="post">
{% csrf_token %}
<input type="hidden" name="key" value="{{invitation.key}}">
<p>
<input type="submit" name="reject_invitation"
value="{% trans "Reject this invitation and stay on the waitinglist" %}"/>
<input type="submit" name="leave_waitinglist" value="{% trans "Leave the waitinglist" %}"/>
</p>
</form>
{% endblock %}