{% load i18n %}
{% trans "Proxmox" %}
{% if proxmox_endpoints %}
{% for ep in proxmox_endpoints %}
{{ ep.name }}
{{ ep.ip }}
{% if ep.mode and ep.mode != "—" %} {% trans "Mode" %}: {{ ep.mode }} {% endif %}
{% endfor %}
{% else %}

{% trans "No Proxmox endpoints configured." %}

{% endif %}
{% trans "NetBox" %}
{% if netbox_endpoint %}
{% trans "Configured" %}
{% else %}
{% trans "Not configured" %}
{% endif %}
{% trans "FastAPI" %}
{% if fastapi_endpoint %}
{% trans "Configured" %}
{% else %}
{% trans "Not configured" %}
{% endif %}