headline/view/templates/article_detail.html

14 lines
280 B
HTML
Raw Normal View History

2023-08-16 23:01:45 +02:00
{% 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 %}