mirror of
https://github.com/correl/codereview.git
synced 2025-01-04 03:00:09 +00:00
14 lines
283 B
HTML
14 lines
283 B
HTML
|
{% extends "layouts/default.html" %}
|
||
|
|
||
|
{% block annotations %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>#{{ review.pk }} - <span id="review-description">{{ review.description }}</span></h2>
|
||
|
|
||
|
{% for diff in diffs %}
|
||
|
{% include "components/diff.html" %}
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|
||
|
|