Private
Public Access
1
0

a few more templates

This commit is contained in:
Sander Roosendaal
2018-03-19 17:48:47 +01:00
parent e7e2ced5f5
commit 0dadcf32a6
3 changed files with 128 additions and 46 deletions

View File

@@ -0,0 +1,58 @@
{% extends "emailbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block body %}
<p>Dear <strong>{{ name }}</strong>,</p>
<p>
{{ manager }} is inviting you to join his team {{ teamname }}
on rowsandall.com
</p>
<p>
By accepting the invite, you will have access to your
team's workouts on rowsandall.com and your workouts will
be visible to
the members of the team.
</p>
<p>
By accepting the invite, you are agreeing with the sharing
of personal data according to our privacy policy.
</p>
<p>
If you already have an account on rowsandall.com, you can login to the
site and you will find the invitation here on the Teams page:
<a href="{{ siteurl }}/rowers/me/teams">{{ siteurl }}/rowers/me/teams</a>
</p>
<p>
You can also click the direct link:
<a href="{{ siteurl }}/rowers/me/invitation/{{ code }}">
{{ siteurl }}/rowers/me/invitation/{{ code }}</a>
</p>
<p>
If you are not yet registered to rowsandall.com,
you can register for free at
<a href="{{ siteurl }}/rowers/register">{{ siteurl }}/rowers/register</a>
</p>
<p>
After you set up your account, you can use the direct link:
<a href="{{ siteurl }}/rowers/me/invitation/{{ code }}">
{{ siteurl }}/rowers/me/invitation/{{ code }}</a>
</p>
<p>
You can also manually accept your team membership with the code.
You will need to do this if you registered under a different email address than this one.
</p>
<p>
Code: {{ code }}
</p>
<p>
Link to manually accept your team membership:
<a href="{{ siteurl }}/rowers/me/invitation">
{{ siteurl }}/rowers/me/invitation</a>
</p>
<p>
Best Regards, the Rowsandall Team
</p>
{% endblock %}

View File

@@ -0,0 +1,26 @@
{% extends "emailbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block body %}
<p>Dear <strong>{{ name }}</strong>,</p>
<p>
{{ commenter_first_name }} {{ commenter_last_name }} has written
a new comment on your workout {{ workoutname }}
</p>
<p>
{{ comment }}
</p>
<p>
You can read the comment here:
</p>
<p>
<a href="{{ siteurl }}/rowers/workout/{{ workoutid }}/comment">
{{ siteurl }}/rowers/workout/{{ workoutid }}/comment</a>
</p>
<p>
Best Regards, the Rowsandall Team
</p>
{% endblock %}