headline/view/templates/article_detail.html

14 lines
331 B
HTML

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