{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} | {{ object.name }} |
| {% trans "Alias" %} | {{ object.name_alias|placeholder }} |
| {% trans "Fabric" %} |
{{ object.aci_fabric }} |
| {% trans "Mode" %} | {{ object.get_mode_display }} |
| {% trans "Min links" %} | {{ object.min_links }} |
| {% trans "Max links" %} | {{ object.max_links }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
| {% trans "Fast select hot standby" %} | {{ object.control_fast_select_hot_standby|yesno }} |
| {% trans "Graceful convergence" %} | {{ object.control_graceful_convergence|yesno }} |
| {% trans "Load defer" %} | {{ object.control_load_defer|yesno }} |
| {% trans "Suspend individual port" %} | {{ object.control_suspend_individual_port|yesno }} |
| {% trans "Symmetric hashing" %} | {{ object.control_symmetric_hashing|yesno }} |
{% include 'inc/panels/comments.html' %}
{% endblock %}