<%= t(".attachments_title", scope: "decidim.admin") %>

<% if can? :create, authorization_object %>
<%= link_to t("actions.new", scope: "decidim.admin", name: t("models.attachment.name", scope: "decidim.admin")), url_for(action: :new), class: 'new' %>
<% end %> <% if attached_to.attachments.any? %> <% attached_to.attachments.each do |attachment| %> <% end %>
<%= t("models.attachment.fields.title", scope: "decidim.admin") %> <%= t("models.attachment.fields.content_type", scope: "decidim.admin") %> <%= t("actions.title", scope: "decidim.admin") %>
<%= link_to translated_attribute(attachment.title), polymorphic_path([attached_to, attachment]) %>
<%= attachment.file_type %> <%= link_to t("actions.edit", scope: "decidim.admin"), edit_polymorphic_path([attached_to, attachment]) if can? :update, authorization_object %> <%= link_to t("actions.destroy", scope: "decidim.admin"), polymorphic_path([attached_to, attachment]), method: :delete, class: "small alert button", data: { confirm: t("actions.confirm_destroy", scope: "decidim.admin") } if can? :destroy, authorization_object %>
<% end %>