]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/newcomment.html
initial import
[osqa.git] / forum / skins / default / templates / notifications / newcomment.html
1 {% extends "email_base.html" %}\r
2 {% load i18n %}\r
3 {% load extra_tags %}\r
4 \r
5 {% block content %}\r
6     <p>{% trans "Hello" %} {% user_var username %},</p>\r
7 \r
8     <p>\r
9         {% blocktrans with comment.user.username as author_name %}\r
10             {{ author_name }} has just posted a comment on\r
11         {% endblocktrans %}\r
12 \r
13         {% if post.question %}\r
14             {% blocktrans with settings.APP_URL as app_url and post.author.username as poster_name and post.author.get_profile_url as poster_url%}\r
15                 the answer posted by <a href="{{ app_url }}{{ poster_url }}">{{ poster_name }}</a> to\r
16             {% endblocktrans %}\r
17         {% endif %}\r
18 \r
19         {% blocktrans with question.title as question_title and settings.APP_URL as app_url and question.get_absolute_url as question_url %}\r
20              the question  <a href="{{ app_url }}{{ question_url }}">{{ question_title }}</a>\r
21         {% endblocktrans %}\r
22     </p>\r
23 \r
24     <blockquote>\r
25         {{ comment.comment }}\r
26     </blockquote>\r
27 \r
28     {% blocktrans %}\r
29         Don't forget to come over and cast your vote.\r
30     {% endblocktrans %}\r
31 \r
32     <p>{% blocktrans %}Sincerely,<br />\r
33     Forum Administrator{% endblocktrans %}</p>\r
34 {% endblock %}\r