{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% load render_table from django_tables2 %} {% block content %}
{% trans "Addresses" %}
{% if object.description %} {% endif %} {% if object.tenant %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% include 'inc/panels/comments.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
Addresses
{% render_table address_table 'inc/table.html' %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}