{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load helpers %} {% load plugins %} {% load i18n %} {% block extra_controls %} {% if perms.netbox_drawio.change_diagram %} {% trans "Edit Diagram" %} {% endif %} {% endblock extra_controls %} {% block content %}
{% trans "Diagram" %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Source" %} {% if object.source_xml %} .drawio {% else %} {% trans "empty" %} {% endif %}
{% trans "Created" %} {{ object.created }}
{% trans "Updated" %} {{ object.last_updated }}
{% include "inc/panels/custom_fields.html" %} {% include "inc/panels/tags.html" %} {% include "inc/panels/comments.html" %} {% plugin_left_page object %}
{% trans "Preview" %}
{% if object.svg_cache %} {{ object.name }} {% else %} {% trans "No diagram content yet." %} {% if perms.netbox_drawio.change_diagram %} {% trans "Use the Edit Diagram button to start drawing." %} {% endif %} {% endif %}
{% plugin_right_page object %}
{% trans "Assigned To" %}
{% if perms.netbox_drawio.add_diagramassignment %} {% trans "Assign to Object" %} {% endif %}
{% render_table assignments_table %}
{% plugin_full_width_page object %}
{% endblock content %}