{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load i18n %} {% block content %}

{% trans "MAC Address" %}

{% trans "MAC Address" %} {{ object.mac_address|placeholder }} {% copy_content object.pk prefix="macaddress_" %}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Assignment" %} {% if object.assigned_object %} {{ object.assigned_object.parent_object|linkify }} / {{ object.assigned_object|linkify }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Primary for interface" %} {% checkmark object.is_primary %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% include 'inc/panels/comments.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}