{% extends 'generic/object.html' %}
{% load buttons %}
{% load static %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% block extra_controls %}
Create Login Credentials
{% endblock %}
{% load render_table from django_tables2 %}
{% block content %}
| Name |
{{ object.name }} |
| URL / Identification |
{{ object.system_url }} |
| Status |
{% badge object.get_system_status_display bg_color=object.get_system_status_color %} |
| Group |
{{ object.group|linkify|placeholder }}
|
| Tenant |
{{ object.tenant|linkify|placeholder }}
|
| Cluster Group |
{{ object.cluster_group|linkify|placeholder }}
|
| Cluster |
{{ object.cluster|linkify|placeholder }}
|
| Device |
{{ object.device|linkify|placeholder }}
|
| Virtual Machine |
{{ object.virtual_machine|linkify|placeholder }}
|
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% render_table systemview_filtered_table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=systemview_filtered_table.paginator page=systemview_filtered_table.page %}
{% endblock content %}