mirror of
https://git.nolog.cz/NoLog.cz/headline.git
synced 2025-02-07 14:12:45 +01:00
14 lines
280 B
HTML
14 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 %}
|