{% extends 'timeseer.html' %} {% from 'macros.html' import info_popover, bootstrap_icon %} {% block main %}

Control loop flows

{% if flows|count == 0 %}
{{ bootstrap_icon('arrow-repeat', 'text-secondary', size=32) }}

You haven't created a control loop flow

Create a control loop flow to analyze the data.
{% endif %} {% if flows|count > 0 %}
{% for flow in flows|sort(attribute='name') %} {% endfor %}
Control loop name Control loop type
{{ flow.name }} {% if scheduled_flows.get(flow.db_id) is not none %} {{ info_popover('Scheduled to run every ' + scheduled_flows.get(flow.db_id).schedule_interval, 'clock') }} {% endif %} Custom
{% endif %} {% endblock %} {% block scripts_bottom %} {% endblock %}