{% extends 'base.html' %} {% block content %} {% from '_helpers.jinja' import render_simple_field %}
Add a new change detection watch {{ render_simple_field(form.url, placeholder="https://...", required=true) }} {{ render_simple_field(form.tag, value=active_tag if active_tag else '', placeholder="tag") }}
 
All {% for tag in tags %} {% if tag != "" %} {{ tag }} {% endif %} {% endfor %}
{% for watch in watches %} {% endfor %}
  {{ loop.index }} {% if watch.paused %} Resume {% else %} Pause {% endif %} {{watch.title if watch.title is not none and watch.title|length > 0 else watch.url}} {%if watch.fetch_backend == "html_webdriver" %}{% endif %} {% if watch.last_error is defined and watch.last_error != False %}
{{ watch.last_error }}
{% endif %} {% if not active_tag %} {{ watch.tag}} {% endif %}
{{ watch.title if watch.title else watch.url }} {{watch|format_last_checked_time}} {{ watch.last_checked }} {% if watch.history|length >= 2 and watch.last_changed %} {{watch.last_changed|format_timestamp_timeago}} {% else %} Not yet {% endif %} {{ watch.last_changed }} Recheck Edit {% if watch.history|length >= 2 %} Diff {% else %} {% if watch.history|length == 1 %} Preview {% endif %} {% endif %}
{% endblock %}