{# Add Attachment Button - Dynamically shown on object detail pages when create_add_button is enabled #}
{# The return_url will redirect back to the object's attachment list tab after creating an attachment #}
{% if perms.netbox_attachments.add_netboxattachment %}
{% if object_type_attachment_list %}
Add Attachment
{% else %}
{# Fallback when object_type_attachment_list is not available - returns to current page #}
Add Attachment
{% endif %}
{% endif %}