<%= @attachment.file_name %>
<% case @attachment.icon_css_class %>
<% when "file-image" %>
<%= image_tag(alchemy.show_attachment_path(@attachment), class: "full_width") %>
<% when "file-audio" %>
<%= audio_tag(alchemy.show_attachment_path(@attachment), preload: "none", controls: true, class: "full_width") %>
<% when "file-video" %>
<%= video_tag(alchemy.show_attachment_path(@attachment), preload: "metadata", controls: true, class: "full_width") %>
<% when "file-pdf" %>
<% end %>