Merge branch 'main' into MK/finance_workflow
commit
3afcc25bc4
@ -0,0 +1,15 @@
|
|||||||
|
{% extends "members/base.html" %}
|
||||||
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{% trans "Confirm invitation" %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<h1>{% trans "Confirm invitation" %}</h1>
|
||||||
|
|
||||||
|
<p>{% trans "This invitation is invalid or expired." %}</p>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
@ -0,0 +1,29 @@
|
|||||||
|
{% extends "members/base.html" %}
|
||||||
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{% trans "Confirm trial group meeting invitation" %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<h1>{% trans "Confirm trial group meeting invitation" %}</h1>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
{% blocktrans %}You were invited to a trial group meeting of the group {{ groupname }}.{% endblocktrans %}
|
||||||
|
{{ timeinfo }}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
{% blocktrans %}Do you want to take part in the trial group meeting? If yes, please confirm your attendance by clicking on the following button.{% endblocktrans %}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<form action="" method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
<input type="hidden" name="key" value="{{invitation.key}}">
|
||||||
|
<input type="submit" name="confirm_invitation"
|
||||||
|
value="{% trans "Confirm trial group meeting" %}"/>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
{% extends "members/base.html" %}
|
||||||
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{% trans "Invitation confirmed" %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<h1>{% trans "Invitation confirmed" %}</h1>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
{% blocktrans %}You successfully confirmed the invitation to the trial group meeting of the group {{ groupname }}.{% endblocktrans %}
|
||||||
|
{{ timeinfo }}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
{% blocktrans %}We have informed the group leaders about your confirmation. If for some reason you can not make it,
|
||||||
|
please contact the group leaders at{% endblocktrans %}
|
||||||
|
<a href="mailto:{{ contact_email }}">{{ contact_email }}</a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
Loading…
Reference in New Issue