{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% block content %}

{% trans "Review" %}

{% trans "Change request" %}{{ object.change_request|linkify }}
{% trans "Reviewer" %}{{ object.reviewer }}
{% trans "Decision" %} {% badge object.get_decision_display bg_color=object.get_decision_color %} {% if object.is_stale %} {% trans "Stale" %}
{% trans "The branch has changed since this review was submitted, so it no longer counts towards its policy rules. Submit it again to restate it." %}
{% endif %}
{% trans "Submitted" %}{{ object.created|isodatetime:"minutes" }}
{% plugin_left_page object %}

{% trans "Comment" %}

{% if object.comment %}{{ object.comment|markdown }}{% else %}{% trans "No comment." %}{% endif %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}