Sha256: d97a3256e467f409a832ccf8691f02e564daf1721e4aa8e03e452b0fbf8719ae
Contents?: true
Size: 1006 Bytes
Versions: 12
Compression:
Stored size: 1006 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> <%= render 'alchemy/admin/partials/pagination_links', :items => @attachments %>
Version data entries
12 entries across 12 versions & 1 rubygems