kopia lustrzana https://github.com/dgtlmoon/changedetection.io
26 wiersze
463 B
HTML
26 wiersze
463 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="settings">
|
|
<h1>Current</h1>
|
|
</div>
|
|
|
|
|
|
<div id="diff-ui">
|
|
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<!-- just proof of concept copied straight from github.com/kpdecker/jsdiff -->
|
|
|
|
<td id="diff-col">
|
|
<span id="result">{% for row in content %}<pre>{{row}}</pre>{% endfor %}</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
{% endblock %} |