kopia lustrzana https://github.com/dgtlmoon/changedetection.io
23 wiersze
578 B
HTML
23 wiersze
578 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="settings">
|
|
<h1>Current - {{watch.last_checked|format_timestamp_timeago}}</h1>
|
|
</div>
|
|
|
|
<div id="diff-ui">
|
|
<span class="ignored">Grey lines are ignored</span> <span class="triggered">Blue lines are triggers</span>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td id="diff-col">
|
|
{% for row in content %}
|
|
<div class="{{row.classes}}">{{row.line}}</div>
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %} |