mirror of
https://git.nolog.cz/NoLog.cz/headline.git
synced 2025-01-31 20:03:34 +01:00
13 lines
280 B
HTML
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 %}
|