{% extends "email/base_mail.html"%} {% from "email/macros.html" import quoted_post, emailed_user_info, info_text_style %} {% block content %} {% if can_reply %} {{ reply_sep_tpl|format(gettext('To reply, PLEASE WRITE ABOVE THIS LINE')) }} {% if post.is_question() and alt_reply_address %} {% set addr=alt_reply_address %} {% set subject=alt_reply_subject %}

{% trans addr=alt_reply_address %}Note: to reply with a comment, please use this link {% endtrans %}

{% endif %} {% endif %}
{% if update_type.endswith('update') %} {% set is_anon=post.get_latest_revision().is_anonymous %} {% set author %}{{ emailed_user_info(recipient_user, post.last_edited_by, is_anon) }}{% endset %} {# todo: possibly add phrases to askbot/conf/words.py for question and answer #}

{% trans %}{{ author }} edited a post{% endtrans %}

{{ post.get_latest_revision_diff( ins_start='', ins_end='', del_start='', del_end='' )|safe }} {% else %} {{ quoted_post(post=post, recipient=recipient_user, is_leaf_post=True) }} {% endif %} {% set quote_level=1 %} {% for parent_post in post.get_parent_post_chain() %} {{ quoted_post( post=parent_post, format='parent_subthread', recipient=recipient_user, quote_level=quote_level ) }} {% set quote_level=quote_level + 1 %} {% endfor %}
{% include "email/change_settings_info.html" %} {% endblock %} {% block footer %} {% include "email/footer.html" %} {% if can_reply %}

{{ reply_address }}

{% endif %} {% endblock %}