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,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 %}