{% extends "dashboard.html" %} {% block head %} {% endblock %} {% block content %}

Loading services...

{% for service in services %} {% endfor %} TZ:
Name Type Method Security Mode Template Created Last update Actions
 {{ service["id"] }} {% if service['is_draft'] %} Draft {% else %} Online {% endif %} {{ service["method"] }} {% if service['security_mode'] == 'detect' %} Detect {% else %} Block {% endif %} {% if service["template"] %}  {{ service["template"] }} {% else %} No template {% endif %} {{ service['creation_date'].astimezone().isoformat() }} {{ service['last_update'].astimezone().isoformat() }}
{% set can_delete = can_delete_service(service) %}
{% set delete_tooltip_key = 'tooltip.disabled_readonly' if user_readonly else ('tooltip.disabled_db_readonly' if is_readonly else ('tooltip.disabled_by_method' if not can_delete else 'tooltip.button.delete_service')) %} {% set delete_tooltip_options = '{"method": "' ~ service['method'] ~ '"}' if not can_delete and not is_readonly else '{"name": "' ~ service['id'] ~ '"}' %}
{% if not is_readonly %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}