{% extends 'generic/object.html' %} {% load static %} {% load i18n %} {% block extra_controls %} {% if perms.core.add_job %} {% if object.enabled %}
{% csrf_token %}
{% else %} {% endif %} {% endif %} {% endblock extra_controls %} {% block content %}
PDM Endpoint
Name {{ object.name|default:"—" }}
Enabled {% if object.enabled %} Yes {% else %} No {% endif %}
IP Address {% if object.ip_address %} {{ object.ip_address }} {% else %} — {% endif %}
Domain {{ object.domain|default:"—" }}
Port {{ object.port }}
Token ID {{ object.token_id|default:"—" }}
TLS Fingerprint {% if object.fingerprint %} {{ object.fingerprint }} {% else %} {% endif %}
Verify SSL {% if object.verify_ssl %} Yes {% else %} No {% endif %}
Allow Writes {% if object.allow_writes %} Yes {% else %} No {% endif %}
Timeout {% if object.timeout %} {{ object.timeout }}s {% else %} Default (30s) {% endif %}
Site {% if object.site %} {{ object.site }} {% else %} — {% endif %}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} — {% endif %}
{% include 'inc/panels/custom_fields.html' %}
Federation
Federated PVE Endpoints {% if object.proxmox_endpoints.exists %}
    {% for ep in object.proxmox_endpoints.all %}
  • {{ ep }}
  • {% endfor %}
{% else %} None declared {% endif %}
Federated PBS Endpoints {% if object.pbs_endpoints.exists %}
    {% for ep in object.pbs_endpoints.all %}
  • {{ ep }}
  • {% endfor %}
{% else %} None declared {% endif %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% if remotes_table %}
Discovered Remotes
{% include 'inc/table.html' with table=remotes_table %}
{% endif %} {% endblock %}