This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send a different email for waitinglist on manually accepted events (#669
) * different email for waiting list if not fcfs * fix tests * shortened some lines :) * i am at war with the linter
- Loading branch information
1 parent
6b8b461
commit a54cf26
Showing
5 changed files
with
81 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block text_german %} | ||
<p>Hey {{ name }}!</p> | ||
|
||
<p>Deine Anmeldung für {{ title_de }} wurde auf die Warteliste gesetzt, da bei diesem Event die Teilnehmer manuell akzeptiert werden.</p> | ||
<p>Du erhältst eine E-Mail sobald deine Anmeldung definitiv aufgenommen wird.</p> | ||
|
||
<p>Freundliche Grüsse,</br>AMIV</p> | ||
{% endblock %} | ||
|
||
{% block text_english %} | ||
<p>Hello {{ name }}!</p> | ||
|
||
<p>Your signup for {{ title_en }} was put on the waiting list, as the signups for this event are manually reviewed.</p> | ||
<p>You will be notified as soon as your signup has been definitively accepted.</p> | ||
|
||
<p>Best Regards,</br>AMIV</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{% extends "base.txt" %} | ||
|
||
{% block text_german %} | ||
Hey {{ name }}! | ||
|
||
Deine Anmeldung für {{ title_de }} wurde auf die Warteliste gesetzt, da bei diesem Event die Teilnehmer manuell akzeptiert werden. | ||
Du erhältst eine E-Mail sobald deine Anmeldung definitiv aufgenommen wird. | ||
|
||
Freundliche Grüsse, | ||
AMIV | ||
{% endblock %} | ||
|
||
{% block text_english %} | ||
Hello {{ name }}! | ||
|
||
Your signup for {{ title_en }} was put on the waiting list, as the signups for this event are manually reviewed. | ||
You will be notified as soon as your signup has been definitively accepted. | ||
|
||
Best Regards, | ||
AMIV | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters