{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Client Detail" %}{% endblock %} {% block page_header %} {% endblock page_header %} {% block main %}
{% trans "Client ID" %}
{{ client.client.client_id }}
{% trans "Hostname" %}
{{ client.client.hostname|default:_("N/A") }}
{% trans "UUID" %}
{{ client.client.uuid|default:_("N/A") }}
{% trans "Description" %}
{{ client.client.description|default:_("No description provided") }}
{% trans "Is Central Agent" %}
{% if client.client.is_central %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% trans "User ID" %}
{{ client.user_id }}
{% trans "Project ID" %}
{{ client.project_id|default:_("N/A") }}

{% trans "Supported Capabilities" %}


{% trans "Supported Actions" %}
{% if client.client.supported_actions %} {% for action in client.client.supported_actions %} {{ action }} {% endfor %} {% else %} {% trans "None" %} {% endif %}
{% trans "Supported Modes" %}
{% if client.client.supported_modes %} {% for mode in client.client.supported_modes %} {{ mode }} {% endfor %} {% else %} {% trans "None" %} {% endif %}
{% trans "Supported Storages" %}
{% if client.client.supported_storages %} {% for storage in client.client.supported_storages %} {{ storage }} {% endfor %} {% else %} {% trans "None" %} {% endif %}
{% trans "Supported Engines" %}
{% if client.client.supported_engines %} {% for engine in client.client.supported_engines %} {{ engine }} {% endfor %} {% else %} {% trans "None" %} {% endif %}
{% endblock %}