{% extends "notifications/email_base.html" %} {% load djblets_email djblets_extensions djblets_utils %} {% load markdown_email rb_extensions %} {% block content %} {% if review.ship_it %}

{% if has_issues %} Fix it, then Ship it! {% else %} Ship it! {% endif %}

{% endif %} {% template_hook_point "review-email-html-summary" %} {% if review.body_top %}
{{review.body_top|markdown_email_html:review.body_top_rich_text}}

{% endif %} {% for comment in review.screenshot_comments.all %}
{{comment.screenshot.image.name|basename}}
{{comment.screenshot.caption}}
{% comment_detail_display_hook comment "html-email" %}
{{comment.text|markdown_email_html:comment.rich_text}}

{% endfor %} {% for comment in review.file_attachment_comments.all %}
{{comment.get_link_text}} {% if comment.file_attachment.caption %}

{{comment.file_attachment.caption}}

{% endif %} {% with comment.thumbnail as thumbnail %} {% if thumbnail %}
{{thumbnail|default:''|safe}}
{% endif %} {% endwith %}
{% comment_detail_display_hook comment "html-email" %}
{{comment.text|markdown_email_html:comment.rich_text}}

{% endfor %} {% for entry in comment_entries %}
{{entry.html|safe}}
{% comment_detail_display_hook entry.comment "html-email" %}
{{entry.comment.text|markdown_email_html:entry.comment.rich_text}}

{% endfor %} {% if review.body_bottom %}
{{review.body_bottom|markdown_email_html:review.body_bottom_rich_text}}
{% endif %}

- {{review.user|user_displayname}}

{% endblock %} {% block footer %}

On {{review_request.time_emailed|date:"F jS, Y, P T"}}, {{review_request.submitter|user_displayname}} wrote:

{% with 1 as embedded %} {% include "notifications/review_request_email.html" %} {% endwith %} {% endblock %}