{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% load buttons %}
{% block page-header %}
{% if object.status != "success" and object.status != "failed" and object.status != "merge" %}
{% endif %}
{{ block.super }}
{% endblock %}
{% block content %}
Name |
{{ object.name }} |
RITM |
{{ object.ritm }} |
Description |
{{ object.description }} |
Tenant |
{{ object.tenant|linkify|placeholder }} |
Cluster |
{{ object.cluster|linkify|placeholder }} |
Virtual IP Address |
{{ object.virtual_ip_address|linkify|placeholder }}{% if object.virtual_port %} :{{ object.virtual_port }}{% endif %} |
Member IP Addresses |
{{ object.member_ip_addresses_string }} |
{% include 'inc/panels/custom_fields.html' %}
TCP LAN |
{{ object.tcp_lan|placeholder }} |
TCP WAN |
{{ object.tcp_wan|placeholder }} |
Persistence Profile |
{{ object.persistence_profile|placeholder }} |
Health Monitor Profile |
{{ object.health_monitor_profile|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock content %}