{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% load perms %} {% load plugins %} {% load render_table from django_tables2 %} {% block extra_controls %} {% if perms.netbox_data_flows.change_objectalias %} {% trans "Add member objects" %} {% endif %} {% endblock extra_controls %} {% block content %}
{% trans "Object Alias" %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{# FIXME: put table in Tab #}
{% trans "Member objects" %}
{% render_table targets_table %} {% if perms.netbox_data_flows.change_objectalias %} {% endif %}
{% plugin_right_page object %}
{# FIXME: include #}
{% trans "Source in Data Flows" %}
{% render_table dataflow_sources_table %}
{% trans "Destination in Data Flows" %}
{% render_table dataflow_destinations_table %}
{% plugin_full_width_page object %}
{% endblock content %}