{% extends 'base.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% plugin_buttons object %} {% if perms.dcim.add_manufacturer %} {% clone_button object %} {% endif %} {% if perms.dcim.change_manufacturer %} {% edit_button object %} {% endif %} {% if perms.dcim.delete_manufacturer %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Manufacturer
Description {{ object.description|placeholder }}
Devices {{ device_table.rows|length }}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_left_page object %}
Devices
{% include 'inc/table.html' with table=device_table %} {% if perms.dcim.add_device %} {% endif %}
{% include 'inc/paginator.html' with paginator=device_table.paginator page=device_table.page %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}