{% extends 'generic/object.html' %}
{% comment %}
generic/object.html's default breadcrumb uses the action_url tag with no
assignment clause, and ActionURLNode.render() re-raises NoReverseMatch in
that form. ProxmoxCluster has no proxmoxcluster_list route; its list page is
the bespoke clusters view, so point the breadcrumb at that route instead.
{% endcomment %}
{% block breadcrumbs %}
Proxmox Clusters
{% endblock breadcrumbs %}
{% block content %}
| Name |
{{ object.name }} |
| Proxmox Endpoint |
{% if object.endpoint %}
{{ object.endpoint }}
{% else %}
—
{% endif %}
|
| NetBox Cluster |
{% if object.netbox_cluster %}
{{ object.netbox_cluster }}
{% else %}
Not linked
{% endif %}
|
| Cluster ID |
{{ object.cluster_id|placeholder }} |
| Mode |
{{ object.get_mode_display|placeholder }} |
| Nodes |
{{ object.nodes_count|placeholder }} |
| Quorate |
{% if object.quorate is None %}
—
{% elif object.quorate %}
Yes
{% else %}
No
{% endif %}
|
| Version |
{{ object.version|placeholder }} |
| Last Updated |
{{ object.last_updated|placeholder }} |
{% endblock content %}