{% extends 'common/base.html' %} {% load bootstrap3 %} {% load permissions %} {% block title %}::{{ object.name }}{% endblock %} {% block content %}

{{ object.name }}

{% if object.url %} {% endif %} {% if object.username %} {% endif %} {% if object.api_key and object.permissions.api_key.edit %} {% endif %} {% if object.master_node.inventory_object_id %} {% endif %}
Name {{ object.name }}
URL {{ object.url }}
Username {{ object.username|may_not_have_access }}
API Key ****************
Inventory Object {{ object.master_node.inventory_object.name }}
Last Successful Sync {{ object.last_successful_sync }}
Last Failed Sync {{ object.last_failed_sync }}
Slaves
    {% for node in object.nodes.all %}
  • {{ node.name }}
  • {% empty %}
  • None (not imported yet?)
  • {% endfor %}
{% include 'common/detail_buttons.html' with object_name=object.name %}
{% if view.display_actions %} {% endif %} {% for object in nodes_list %} {% if view.display_actions %} {% endif %} {% endfor %}
Name CPUs Memory LabelsActions
{{ object.name|truncatechars:23 }} {{ object.executors }} {{ object.total_memory|filesizeformat }} {% for label in object.labels.all %} {{ label.name }} {% endfor %}
{% include 'common/page_navigation.html' with page_obj=nodes_page paginator=nodes_paginator %}
{% for object in logs_list %} {% endfor %}
Timestamp Message
{{ object.created }} {{ object.message }}
{% endblock content %}