{% load helpers %} {% load perms %} {% if perms.netbox_attachments.view_netboxattachment %}
Attachments
{% with netbox_attachments=netbox_attachments %} {% if netbox_attachments.exists %} {% for attachment in netbox_attachments %} {% endfor %}
Name Description Size Created
{{ attachment }} {{ attachment.description }} {{ attachment.size|filesizeformat }} {{ attachment.created }} {% if perms.netbox_attachments.change_netboxattachment %} {% endif %} {% if perms.netbox_attachments.delete_netboxattachment %} {% endif %}
{% else %}
None
{% endif %} {% endwith %}
{% if perms.netbox_attachments.add_netboxattachment %} {% endif %}
{% endif %}