{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
{% trans "Proxmox Cluster Summary" %}
{% trans "Cluster Name" %} {{ object.name }}
{% trans "Proxmox Endpoint" %} {% if proxmox_endpoint %} {{ proxmox_endpoint }} {% else %} {% trans "Not configured" %} {% endif %}
{% trans "Storage Count" %} {% if storage_count %} {{ storage_count }} {% else %} 0 {% endif %}
{% trans "Quick Actions" %}
{% if storages %}
{% trans "Recent Storages" %}
{% for storage in storages %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Content" %} {% trans "Path" %} {% trans "Nodes" %} {% trans "Shared" %} {% trans "Enabled" %}
{{ storage.name }} {{ storage.storage_type|default:"—" }} {{ storage.content|default:"—" }} {{ storage.path|default:"—" }} {{ storage.nodes|default:"—" }} {% if storage.shared %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} {% if storage.enabled %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% endif %} {% endblock %}