{% if replication and replication.slots %}
{% for slot in replication.slots %}
{{ slot.slot_name }} {% if slot.active %}Active{% else %}Inactive{% endif %} {{ slot.slot_type }}
{% if slot.client_addr %}
Client: {{ slot.client_addr }}
{% endif %}
{% endfor %}
{% else %}
No replication slots configured
{% endif %} {% if wal_stats %}
WAL Statistics
{% if wal_stats.wal_level %}
Level: {{ wal_stats.wal_level }}
{% endif %} {% if wal_stats.archive_mode %}
Archive: {{ wal_stats.archive_mode }}
{% endif %}
{% endif %}