a few more templates
This commit is contained in:
16
rowers/templates/teamdropemail.html
Normal file
16
rowers/templates/teamdropemail.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "emailbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block body %}
|
||||
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
||||
|
||||
<p>
|
||||
Unfortunately,
|
||||
{{ managername }} has removed you from
|
||||
the team {{ teamname }}.
|
||||
</p>
|
||||
<p>
|
||||
Best Regards, the Rowsandall Team
|
||||
</p>
|
||||
{% endblock %}
|
||||
16
rowers/templates/teaminviteacceptemail.html
Normal file
16
rowers/templates/teaminviteacceptemail.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "emailbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block body %}
|
||||
<p>Dear <strong>{{ managername }}</strong>,</p>
|
||||
|
||||
<p>
|
||||
{{ first_name }} has accepted your invitation to be
|
||||
part of the team {{ teamname }}.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Best Regards, the Rowsandall Team
|
||||
</p>
|
||||
{% endblock %}
|
||||
17
rowers/templates/teaminviterejectemail.html
Normal file
17
rowers/templates/teaminviterejectemail.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends "emailbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block body %}
|
||||
<p>Dear <strong>{{ managername }}</strong>,</p>
|
||||
|
||||
<p>
|
||||
Unfortunately,
|
||||
{{ first_name }} has rejected your invitation to be
|
||||
part of the team {{ teamname }}.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Best Regards, the Rowsandall Team
|
||||
</p>
|
||||
{% endblock %}
|
||||
16
rowers/templates/teamrejectemail.html
Normal file
16
rowers/templates/teamrejectemail.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "emailbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block body %}
|
||||
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
||||
|
||||
<p>
|
||||
Unfortunately,
|
||||
{{ managername }} has rejected your request to be part
|
||||
of the team {{ teamname }}.
|
||||
</p>
|
||||
<p>
|
||||
Best Regards, the Rowsandall Team
|
||||
</p>
|
||||
{% endblock %}
|
||||
19
rowers/templates/teamremoveemail.html
Normal file
19
rowers/templates/teamremoveemail.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends "emailbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block body %}
|
||||
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
||||
|
||||
<p>
|
||||
{{ managername }} has decided to delete the team {{ teamname }}.
|
||||
</p>
|
||||
<p>
|
||||
The {{ teamname }} tag has been removed from all your
|
||||
workouts on rowsandall.com
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Best Regards, the Rowsandall Team
|
||||
</p>
|
||||
{% endblock %}
|
||||
29
rowers/templates/teamrequestemail.html
Normal file
29
rowers/templates/teamrequestemail.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% extends "emailbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block body %}
|
||||
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
||||
|
||||
<p>
|
||||
{{ requestor }} is requesting access to your team {{ teamname }}
|
||||
on rowsandall.com
|
||||
</p>
|
||||
<p>
|
||||
Click the direct link to accept:
|
||||
<a href="{{ siteurl }}/rowers/me/request/{{ code }}">
|
||||
{{ siteurl }}/rowers/me/request/{{ code }}</a>
|
||||
</p>
|
||||
<p>
|
||||
Click the following link to reject the request:
|
||||
<a href="{{ siteurl }}/rowers/me/request/{{ id }}">
|
||||
{{ siteurl }}/rowers/me/request/{{ id }}</a>
|
||||
</p>
|
||||
<p>
|
||||
You can find all pending requests on your team management page:
|
||||
<a href="{{ siteurl }}/rowers/me/teams">{{ siteurl }}/rowers/me/teams</a>
|
||||
</p>
|
||||
<p>
|
||||
Best Regards, the Rowsandall Team
|
||||
</p>
|
||||
{% endblock %}
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
<p>
|
||||
{{ commenter_first_name }} {{ commenter_last_name }} has written
|
||||
a new comment on your workout {{ workoutname }}
|
||||
a new comment on workout {{ workoutname }}
|
||||
</p>
|
||||
<p>
|
||||
{{ comment }}
|
||||
|
||||
15
rowers/templates/teamwelcomeemail.html
Normal file
15
rowers/templates/teamwelcomeemail.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends "emailbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block body %}
|
||||
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
||||
|
||||
<p>
|
||||
{{ managername }} has accepted your request to be part
|
||||
of the team {{ teamname }}.
|
||||
</p>
|
||||
<p>
|
||||
Best Regards, the Rowsandall Team
|
||||
</p>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user