{% extends "reviews/entries/base.html" %} {% load i18n reviewtags %} {% block entry_classes %}changedesc has-avatar{% endblock %} {% block entry_title %}{% trans "Review request changed" %}{% endblock %} {% block entry_new_label %}{% trans "New review request update" %}{% endblock %} {% block entry_content %} {% with changedesc=entry.changedesc %}
{% if entry.new_status %}

{% trans "Status:" %} {% if entry.new_status == 'submitted' %} {% trans "Closed (submitted)" %} {% elif entry.new_status == 'discarded' %} {% trans "Discarded" %} {% elif entry.new_status == 'pending' %} {% trans "Re-opened" %} {% endif %}

{% endif %} {% if changedesc.text %}

{% trans "Change Summary:" %}

{{changedesc.text|render_markdown:changedesc.rich_text}}
{% endif %} {% for group in entry.fields_changed_groups %} {% if group.inline %} {% for fieldinfo in group.fields %} {% if fieldinfo.rendered_html %} {% endif %} {% endfor %}

{{fieldinfo.title}}:

{{fieldinfo.rendered_html}}
{% else %} {% endif %} {% endfor %}
{% if entry.status_updates %}

{% trans "Checks run" %} ({{entry.state_summary}})

{% for update in entry.status_updates %} {{update.summary_html}} {% endfor %}
{% for update in entry.status_updates %} {% include "reviews/entries/_status_update_review_section.html" %} {% endfor %}
{% endif %} {% endwith %} {% endblock entry_content %}