{% extends "base.html" %} {% block title %}Code Review: {{ source_branch }} → {{ target_branch }}{% endblock %} {% block header_extra %}
{{ file_count }} files {{ total_issues }} issues {{ total_suggestions }} suggestions
{% endblock %} {% block styles %} {% endblock %} {% block content %}

Overall Summary

{{ overall_summary }}
{% for file in files %}
{{ file.change_label }} {{ file.path }}
View Code
{{ file.summary }}
{% if file.issues %}

Issues ({{ file.issues|length }})

{% endif %} {% if file.suggestions %}

Suggestions ({{ file.suggestions|length }})

{% endif %}
{% endfor %} {% endblock %} {% block scripts %} {% endblock %}