{% extends "reviews/reviewable_base.html" %} {% load i18n %} {% load djblets_deco %} {% load djblets_utils %} {% load reviewtags %} {% block title %}{{review_request_details.summary}} | {% trans "Review Request" %}{% endblock %} {% block jsconsts %} {% include "reviews/review_flags.js" %} {% endblock %} {% block css %} {% if siteconfig.settings.diffviewer_show_trailing_whitespace|default_if_none:1 %} {% endif %} {% endblock %} {% block scripts-post %} {% endblock %} {% block content %} {% include "reviews/trophy_box.html" %} {% include "reviews/review_header.html" %} {% box "review-request" %}
{% include "reviews/review_request_box.html" %}
{% endbox %} {% for entry in entries %} {% if entry.review %}
{% if forloop.last %} {% endif %} {% box "review" %}
{% if entry.review.ship_it %}
{% trans "Ship it!" %}
{% endif %}
{% blocktrans with entry.review.timestamp|timesince as timestamp_since and entry.review.timestamp|date:"F jS, Y, P" as timestamp_date %}Posted {{ timestamp_since }} ago ({{ timestamp_date }}){% endblocktrans %}
{{entry.review.body_top|escape}}
{% reply_section entry.review "" "body_top" "rcbt" %} {% if entry.review.comments.all or entry.review.screenshot_comments.all %}
{% for comment in entry.review.screenshot_comments.all %}
{{comment.text|escape}}
{% reply_section entry.review comment "screenshot_comment" "rc" %}
{% endfor %} {% for comment in entry.review.ordered_comments %}
{# header entry #} {% for i in comment.num_lines|default_if_none:1|range %} {% endfor %}
{{comment.filediff.dest_file}} {% if comment.interfilediff %} (Diff revisions {{comment.filediff.diffset.revision}} - {{comment.interfilediff.diffset.revision}}) {% else %} (Diff revision {{comment.filediff.diffset.revision}}) {% endif %}
 
 
{{comment.text|escape}}
{% reply_section entry.review comment "comment" "rc" %}
{% endfor %}
{% endif %} {% if entry.review.body_bottom %}
{{entry.review.body_bottom|escape}}
{% reply_section entry.review "" "body_bottom" "rcbb" %} {% endif %}
{% endbox %}
{% endif %} {% if entry.changedesc %} {% box "changedesc" %}
{% trans "Review request changed" %}
{% blocktrans with entry.changedesc.timestamp|timesince as timestamp_since and entry.changedesc.timestamp|date:"F jS, Y, P" as timestamp_date %}Updated {{ timestamp_since }} ago ({{ timestamp_date }}){% endblocktrans %}
{% if entry.changedesc.text %}
{{entry.changedesc.text|escape}}
{% endif %}
{% endbox %} {% endif %} {% endfor %} {% endblock %}