{% extends "base.html" %} {% block title %}Watcher Stats{% endblock %} {% block content %} {% for watcher in watchers %}
{{ watcher[0] }}
{% if show_controls %}
Edit
{{ watcher[1].csrf_token() }} {{ watcher[1].watcher_id() }} {{ watcher[1].start(class_="btn btn-primary") }} {{ watcher[1].stop(class_="btn btn-primary") }} {{ watcher[1].reload(class_="btn btn-primary") }}
{% endif %}
{% endfor %} {% endblock %}