diff --git a/src/templates/emails/base_email.html b/src/templates/emails/base_email.html index 903e75e33..8d89f0b07 100644 --- a/src/templates/emails/base_email.html +++ b/src/templates/emails/base_email.html @@ -22,8 +22,27 @@ background-color: #f7f7f7; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; } - body { - /*padding: 20px;*/ + .container { + width: 100%; + max-width: 600px; + margin: auto; + border: 1px solid #dddddd; + background-color: #ffffff; + } + .header_img { + width: 40%; + } + .header { + width: 100%; + background-color: #2D3E4C; + min-height: 110px; + display: flex; + justify-content: center; + align-items: center; + margin-bottom: 10px; + } + .content{ + padding: 20px; } h1 { font-size: 41px; @@ -57,6 +76,7 @@ color: #ccc; font-size: 11px; line-height: 18px; + text-align: center; } blockquote { color: #555555; @@ -78,27 +98,34 @@ +
+
+ codabench +
+
+

Hello{% if user %} {{ user.username }}{% endif %},

- {% block title %} {% endblock %} {% block content %} +

We're thrilled to inform you that your application for the + {{ participant.competition.title }} + competition has been accepted. Get ready to showcase your skills and compete with other talented individuals.

+

We look forward to seeing your participation.

{% endblock %} {% if not mass_email %}

Thanks,

-

Codabench Team

{% endif %} - +
+
diff --git a/src/templates/emails/participation/organizer/participation_accepted.html b/src/templates/emails/participation/organizer/participation_accepted.html index 703744f68..f25d3dfc9 100644 --- a/src/templates/emails/participation/organizer/participation_accepted.html +++ b/src/templates/emails/participation/organizer/participation_accepted.html @@ -1,9 +1,6 @@ {% extends 'emails/base_email.html' %} {% block content %} -

The user {{ participant.user.username }} was accepted into your competition:

- {{ participant.competition.title }} - -

Participants can be managed from the admin tab of your competition

+

We're writing to inform you that user {{ participant.user.username }} has been accepted into your competition + {{ participant.competition.title }}.You can manage all participants from the admin panel of your competition.

{% endblock %} diff --git a/src/templates/emails/participation/organizer/participation_accepted.txt b/src/templates/emails/participation/organizer/participation_accepted.txt index 4d1669e44..f25d3dfc9 100644 --- a/src/templates/emails/participation/organizer/participation_accepted.txt +++ b/src/templates/emails/participation/organizer/participation_accepted.txt @@ -1,8 +1,6 @@ -{% extends 'emails/base_email.txt' %} +{% extends 'emails/base_email.html' %} {% block content %} -The user {{ participant.user.username }} was accepted into your competition: -{{ participant.competition.title }} -> http://{{ site.domain }}{{ participant.competition.get_absolute_url }} - -Participants can be managed from the admin tab of your competition +

We're writing to inform you that user {{ participant.user.username }} has been accepted into your competition + {{ participant.competition.title }}.You can manage all participants from the admin panel of your competition.

{% endblock %} diff --git a/src/templates/emails/participation/organizer/participation_denied.html b/src/templates/emails/participation/organizer/participation_denied.html index 5eb320e01..43ec224c0 100644 --- a/src/templates/emails/participation/organizer/participation_denied.html +++ b/src/templates/emails/participation/organizer/participation_denied.html @@ -1,9 +1,6 @@ {% extends 'emails/base_email.html' %} {% block content %} -

The user {{ participant.user.username }} was denied permission to your competition:

- {{ participant.competition.title }} - -

Participants can be managed from the admin tab of your competition.

+

We're writing to inform you that user {{ participant.user.username }} has been denied to your competition + {{ participant.competition.title }}.You can manage all participants from the admin panel of your competition.

{% endblock %} diff --git a/src/templates/emails/participation/organizer/participation_denied.txt b/src/templates/emails/participation/organizer/participation_denied.txt index babba7aac..43ec224c0 100644 --- a/src/templates/emails/participation/organizer/participation_denied.txt +++ b/src/templates/emails/participation/organizer/participation_denied.txt @@ -1,8 +1,6 @@ -{% extends 'emails/base_email.txt' %} +{% extends 'emails/base_email.html' %} {% block content %} -The user {{ participant.user.username }} was revoked permission to your competition: -{{ participant.competition.title }} -> http://{{ site.domain }}{{ participant.competition.get_absolute_url }} - -Participants can be managed from the admin tab of your competition +

We're writing to inform you that user {{ participant.user.username }} has been denied to your competition + {{ participant.competition.title }}.You can manage all participants from the admin panel of your competition.

{% endblock %} diff --git a/src/templates/emails/participation/organizer/participation_requested.html b/src/templates/emails/participation/organizer/participation_requested.html index 87b79dbf3..dad10d911 100644 --- a/src/templates/emails/participation/organizer/participation_requested.html +++ b/src/templates/emails/participation/organizer/participation_requested.html @@ -1,8 +1,6 @@ {% extends 'emails/base_email.html' %} {% block content %} -

The user {{ participant.user.username }} requested access to your competition:

- {{ participant.competition.title }} -

Participants can be managed from the admin tab of your competition

+

We're writing to inform you that user {{ participant.user.username }} has requested access to your competition + {{ participant.competition.title }}.You can manage all participants from the admin panel of your competition.

{% endblock %} diff --git a/src/templates/emails/participation/organizer/participation_requested.txt b/src/templates/emails/participation/organizer/participation_requested.txt index e72c1b72a..dad10d911 100644 --- a/src/templates/emails/participation/organizer/participation_requested.txt +++ b/src/templates/emails/participation/organizer/participation_requested.txt @@ -1,8 +1,6 @@ -{% extends 'emails/base_email.txt' %} +{% extends 'emails/base_email.html' %} {% block content %} -The user {{ participant.user.username }} requested access to your competition: -{{ participant.competition.title }} -> http://{{ site.domain }}{{ participant.competition.get_absolute_url }} - -Participants can be managed from the admin tab of your competition +

We're writing to inform you that user {{ participant.user.username }} has requested access to your competition + {{ participant.competition.title }}.You can manage all participants from the admin panel of your competition.

{% endblock %} diff --git a/src/templates/emails/participation/participant/participation_accepted.html b/src/templates/emails/participation/participant/participation_accepted.html index 3db6a7e9b..27a0ddfd9 100644 --- a/src/templates/emails/participation/participant/participation_accepted.html +++ b/src/templates/emails/participation/participant/participation_accepted.html @@ -1,8 +1,11 @@ {% extends 'emails/base_email.html' %} {% block content %} -

This is a message updating your access to the competition:

+

We're thrilled to inform you that your application for the {{ participant.competition.title }} - -

Your status has been accepted!

+ competition has been accepted. Get ready to showcase your skills and compete with other talented individuals.

+

We look forward to seeing your participation.

{% endblock %} + + + diff --git a/src/templates/emails/participation/participant/participation_accepted.txt b/src/templates/emails/participation/participant/participation_accepted.txt index 04a0f8702..27a0ddfd9 100644 --- a/src/templates/emails/participation/participant/participation_accepted.txt +++ b/src/templates/emails/participation/participant/participation_accepted.txt @@ -1,9 +1,11 @@ -{% extends 'emails/base_email.txt' %} +{% extends 'emails/base_email.html' %} {% block content %} -This is a message updating your access to the competition: -{{ participant.competition.title }} -> http://{{ site.domain }}{{ participant.competition.get_absolute_url }} +

We're thrilled to inform you that your application for the + {{ participant.competition.title }} + competition has been accepted. Get ready to showcase your skills and compete with other talented individuals.

+

We look forward to seeing your participation.

+{% endblock %} + -Your status has been accepted! -{% endblock %} diff --git a/src/templates/emails/participation/participant/participation_denied.html b/src/templates/emails/participation/participant/participation_denied.html index 8a08d054f..23d4701be 100644 --- a/src/templates/emails/participation/participant/participation_denied.html +++ b/src/templates/emails/participation/participant/participation_denied.html @@ -1,9 +1,14 @@ {% extends 'emails/base_email.html' %} {% block content %} -

This is a message updating your access to the competition:

+

We're writing to inform you about your application for the {{ participant.competition.title }} - -

Your participation privileges have been denied.

+ competition. While your application was carefully considered, we regret to inform you that your participation privileges + have been denied. We encourage you to review the competition details and rules to see if there are areas where you can + improve your application for future competitions.

+

Thank you for your interest in the competition. We wish you the best of luck in your future endeavors. +

{% endblock %} + + diff --git a/src/templates/emails/participation/participant/participation_denied.txt b/src/templates/emails/participation/participant/participation_denied.txt index 13e72711e..23d4701be 100644 --- a/src/templates/emails/participation/participant/participation_denied.txt +++ b/src/templates/emails/participation/participant/participation_denied.txt @@ -1,9 +1,14 @@ -{% extends 'emails/base_email.txt' %} +{% extends 'emails/base_email.html' %} {% block content %} -This is a message updating your access to the competition: -{{ participant.competition.title }} -> http://{{ site.domain }}{{ participant.competition.get_absolute_url }} - -Your participation privileges have been denied. +

We're writing to inform you about your application for the + {{ participant.competition.title }} + competition. While your application was carefully considered, we regret to inform you that your participation privileges + have been denied. We encourage you to review the competition details and rules to see if there are areas where you can + improve your application for future competitions.

+

Thank you for your interest in the competition. We wish you the best of luck in your future endeavors. +

{% endblock %} + + diff --git a/src/templates/emails/participation/participant/participation_requested.html b/src/templates/emails/participation/participant/participation_requested.html index 3e1f98098..582d174b5 100644 --- a/src/templates/emails/participation/participant/participation_requested.html +++ b/src/templates/emails/participation/participant/participation_requested.html @@ -1,8 +1,12 @@ {% extends 'emails/base_email.html' %} {% block content %} -

This is a message confirming you have requested access to the competition:

+

Thanks for your interest in the {{ participant.competition.title }} + competition. We have received your request to participate.

-

You will be notified if your participation status is approved or denied.

+

We will carefully review your application and notify you by email regarding your participation status (accepted or denied). + In the meantime, you can review the competition details and rules to familiarize yourself with the challenge.

+ +

We look forward to your participation!

{% endblock %} diff --git a/src/templates/emails/participation/participant/participation_requested.txt b/src/templates/emails/participation/participant/participation_requested.txt index 2a208fe0b..582d174b5 100644 --- a/src/templates/emails/participation/participant/participation_requested.txt +++ b/src/templates/emails/participation/participant/participation_requested.txt @@ -1,8 +1,12 @@ -{% extends 'emails/base_email.txt' %} +{% extends 'emails/base_email.html' %} {% block content %} -This is a message confirming you have requested access to the competition: -{{ participant.competition }} -> http://{{ site.domain }}{{ participant.competition.get_absolute_url }} +

Thanks for your interest in the + {{ participant.competition.title }} + competition. We have received your request to participate.

-You will be notified if your participation status is approved or denied. +

We will carefully review your application and notify you by email regarding your participation status (accepted or denied). + In the meantime, you can review the competition details and rules to familiarize yourself with the challenge.

+ +

We look forward to your participation!

{% endblock %}