25 lines
448 B
HTML
25 lines
448 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
|
|
|
<p>
|
|
{{ commenter_first_name }} {{ commenter_last_name }} has written
|
|
a new comment on {{ sessiontype }} {{ workoutname }}
|
|
</p>
|
|
<p>
|
|
{{ comment }}
|
|
</p>
|
|
<p>
|
|
You can read the comment here:
|
|
</p>
|
|
<p>
|
|
<a href="{{ siteurl }}{{ commentlink }}">
|
|
{{ siteurl }}{{ commentlink }}</a>
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|