summaryrefslogtreecommitdiffstats
path: root/askbot/templates/email/accept_answer_reminder.html
blob: 7b922cd4f55d3c15a8ccf55ce91a790c15860fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "email/base_mail.html"%}
{%block title%}{{reminder_phrase}}{% endblock %}
{%block headline%}{{reminder_phrase}}{% endblock %}

{%block content %}
<ul>
  {% for question in questions %}
  <li><a href="{{site_url}}{{question.get_absolute_url()}}?sort=latest">{{question.thread.title}}</a></li>
  {% endfor %}
</ul>
{% endblock %}
{%block footer %}
{% include "email/footer.html" %}
{% endblock %}