Files
grecia/app/helpers/documents_helper.rb
2022-02-23 18:43:48 +01:00

11 lines
361 B
Ruby

module DocumentsHelper
def document_item_link(document)
info_text = "#{document.humanized_content_type} | #{number_to_human_size(document.attachment_file_size)}"
link_to safe_join([document.title, tag.small("(#{info_text})")], " "),
document.attachment,
target: "_blank",
title: t("shared.target_blank")
end
end