<%= link_to document.attachment, rel: "nofollow" do %>
<%= document.title %>
<%= document.humanized_content_type %>
<%= number_to_human_size(document.attachment_file_size, precision: 2) %>
<% end %>
<% if show_destroy_link? && can?(:destroy, document) %>
<%= link_to t("documents.buttons.destroy_document"),
document,
method: :delete,
data: { confirm: t("documents.actions.destroy.confirm") },
class: "delete" %>
<% end %>