2021-04-03 03:55:43 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div id="settings">
|
2022-02-23 09:49:25 +00:00
|
|
|
<h1>Current - {{watch.last_checked|format_timestamp_timeago}}</h1>
|
2021-04-03 03:55:43 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="diff-ui">
|
2022-02-23 09:49:25 +00:00
|
|
|
<span class="ignored">Grey lines are ignored</span> <span class="triggered">Blue lines are triggers</span>
|
2021-04-03 03:55:43 +00:00
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td id="diff-col">
|
2022-02-23 09:49:25 +00:00
|
|
|
{% for row in content %}
|
2022-02-23 11:30:36 +00:00
|
|
|
<div class="{{row.classes}}">{{row.line}}</div>
|
2022-02-23 09:49:25 +00:00
|
|
|
{% endfor %}
|
2021-04-03 03:55:43 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|