-
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.
- Loading branch information
1 parent
abef520
commit 4a6ca5c
Showing
5 changed files
with
166 additions
and
38 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 |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
<p style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
You have been invited to the Grand Banquet of THS Armada. | ||
</p> | ||
{% include 'email/button.html' with content="Go to invitation" url=link %} | ||
{% include 'email/divider.html' %} | ||
<ul> | ||
<li style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
Time: {{ date|date:"Y-m-d" }} {{ date|date:"H:i" }}. | ||
|
@@ -23,6 +21,8 @@ | |
Deadline for accepting: {{ deadline|date:"d M" }}. | ||
</li> | ||
</ul> | ||
{% include 'email/button.html' with content="Go to invitation" url=link %} | ||
{% include 'email/divider.html' %} | ||
<p style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
Please note that this is an automatic email, and you cannot respond to this email. | ||
You can always reach out to {% include 'email/link.html' with url='mailto:[email protected]' text='[email protected]' %} if you have any questions. | ||
|
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,33 @@ | ||
{% extends "email/base.html" %} | ||
|
||
{% block content %} | ||
<p style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
Hello {{ name }}! | ||
</p> | ||
<p style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
We would like to remind you that you have until the {{ deadline|date:"d M" }} to accept and fill in the invitation for the Grand Banquet of THS Armada. | ||
</p> | ||
<ul> | ||
<li style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
Time: {{ date|date:"Y-m-d" }} {{ date|date:"H:i" }}. | ||
</li> | ||
<li style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
Location: {{ location }}. | ||
</li> | ||
<li style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
Dress code: {{ dress_code }}. | ||
</li> | ||
</ul> | ||
{% include 'email/button.html' with content="Go to invitation" url=link %} | ||
{% include 'email/divider.html' %} | ||
<p style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
Please note that this is an automatic email, and you cannot respond to this email. | ||
You can always reach out to {% include 'email/link.html' with url='mailto:[email protected]' text='[email protected]' %} if you have any questions. | ||
</p> | ||
<p style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
We hope to see you at the banquet! | ||
</p> | ||
<p style="font-size:16px;line-height:24px;margin:16px 0;color:#525f7f;text-align:left"> | ||
The Banquet Team of THS Armada {{ year }} | ||
</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