{% extends 'timeseer.html' %} {% from 'macros.html' import alerter, bootstrap_icon %} {% from 'resources.html' import resource_breadcrumb, resource_menu with context %} {% block menu %} {{ resource_menu('Data services') }} {% endblock %} {% block breadcrumb %} {{ resource_breadcrumb(["Data services"]) }} {% endblock %} {% block main %}

Manage data services

{{ alerter() }}
{% if source_name %} {% endif %}
{% if data_services and data_services|selectattr('origin.value', '==', 'ui')|list|count > 0 %}
{% endif %} {% if data_services|count > 1 or pattern %}
{% endif %}
{% if data_services %}
{% if source_name %} {% endif %} {% for data_service in data_services|sort(attribute='name') %} {% endfor %}
{% if data_services|selectattr('origin.value', '==', 'ui')|list|count > 0 %} {% endif %} Data service name
{% if data_service.origin.value == 'ui' %} {% else %} {{ bootstrap_icon('lock', 'text-muted') }} {% endif %} {{ data_service.name }}
{% else %}

No data services found.

{% endif %}
{% endblock %}