summaryrefslogtreecommitdiffstats
path: root/askbot/templates/email/delayed_email_alert.html
blob: 65fcbd670e351c54569be239be996df4f6e52c79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% block content %}
{{ settings.EMAIL_TEXT_BATCH_ALERT_HEADER|sub_vars(recipient_user) }}
<ul>
{% for q in questions %}
    <li>
        <a href="{{ q['url'] }}?sort=latest">{{ q['title'] }}</a>
        <font color="#777777">({{ q['info'] }})</font>
    </li>
{% endfor %}
</ul>
{% include "email/change_settings_info.html" %}
{% endblock %}
{% block footer %}
    {% include "email/footer.html" %}
{% endblock %}