Sha256: 1c3c0f1b9d3d06b35c52e81877f88272d68c0deac26323b72ba8edf9d5d8e563
Contents?: true
Size: 955 Bytes
Versions: 7
Compression:
Stored size: 955 Bytes
Contents
<%- if @attachments.blank? && params[:query].nil? -%> <div class="info" id="no_files_notice"> <%= render_icon('info') %> <%= t("no_files_in_archive") %> </div> <%- elsif @attachments.blank? -%> <div class="info"> <%= render_icon('info') %> <%= t("no_search_results") %> </div> <%- end -%> <table id="all_files" class="list"> <%- unless @attachments.blank? -%> <tr> <th class="icon"></th> <th class="name"><%= Alchemy::Attachment.human_attribute_name('name') %></th> <th class="file_name"><%= Alchemy::Attachment.human_attribute_name('filename') %></th> <th class="file_type"><%= Alchemy::Attachment.human_attribute_name('content_type') %></th> <th class="file_size"><%= Alchemy::Attachment.human_attribute_name('size') %></th> <th class="date"><%= Alchemy::Attachment.human_attribute_name('created_at') %></th> <th class="tools"></th> </tr> <%- end -%> <%= render(:partial => @attachments) %> </table> <%= paginate @attachments %>
Version data entries
7 entries across 7 versions & 1 rubygems