headline/view/templates/article_detail.html
2023-08-16 23:01:45 +02:00

13 lines
280 B
HTML

{% extends "base.html" %}
{% block body %}
<div class="container">
<h1>Diffs for the article at {{ article_url }}</h1>
<ol class="diffs-list">
{% for diff in diffs %}
<li>{{ diff.diff_time }} {{ diff.diff_html|safe }}</li>
{% endfor %}
</ol>
</div>
{% endblock body %}