{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% load render_table from django_tables2 %} {% block content %}
{% trans "Custom Prefix" %}
{% if object.description %} {% endif %} {% if object.tenant %} {% endif %}
{% trans "Prefix" %} {{ object.prefix }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% if address_assignments_table.rows|length == 1 %}

{% trans "Address Assignment" %}

{% else %}

{% trans "Address Assignments" %}

{% endif %}
{% render_table address_assignments_table 'inc/table.html' %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% include 'inc/panels/comments.html' %} {% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}