{% extends "base.html" %} {% block title %}Shifter Dashboard{% endblock %} {% block header_title %}Service Dashboard{% endblock %} {% block content %}
{% set service_colors = { 'gost': 'border-blue-500', 'haproxy': 'border-amber-500', 'xray': 'border-violet-500', 'iptables': 'border-teal-500' } %} {% for service_name, data in services.items() %}

{{ service_name }}

{{ 'Active' if data.active == 'active' else 'Inactive' }}

Configuration Details

{% if data.details %}
    {% for detail_line in data.details %}
  • {{ detail_line }}
  • {% endfor %}
{% else %}

No configuration details available.

{% endif %}
{% endfor %}
{% endblock %}