Sha256: fbcea806b8cfb20a0e58edf1b01093d7bc8cb253f31cd359ebe0880a09b48f01

Contents?: true

Size: 1.65 KB

Versions: 5

Compression:

Stored size: 1.65 KB

Contents

<%= render :partial => 'admin/shared/contents_sub_menu' %>

<h1><%= t('.listing_uploads') %></h1>

<table class="index">
	<tr>
	  <th><%= t("thumbnail") %></th>
	  <th><%= sort_link @search, :attachment_file_name, t("upload.file_name") %></th>
	  <th><%= sort_link @search, :description, t("description") %></th>
	  <th><%= sort_link @search, :attachment_file_size, t("upload.size") %></th>
	  <th><%= t("action") %></th>
	</tr>
 
  <% @uploads.each do |upload| %>
    <tr id="<%= dom_id(upload) %>">
      <td class="thumbnail">
        <% if upload.image_content? %>
          <%= link_to image_tag(upload.attachment.url(:mini)), upload.attachment.url(:large) %>
        <% end %>
      </td>
      <td><%= link_to upload.attachment_file_name, upload.attachment.url(:original) %></td>
      <td><%= upload.alt %></td>
      <td><%= upload.attachment_file_size.to_i / 1024 %> kb</td>
      <td class="actions">
        <%= link_to_with_icon('edit', t("edit"), edit_admin_upload_url(upload)) %>
        &nbsp;
        <%= link_to_delete upload, {:url => admin_upload_url(upload) }%>
      </td>
    </tr>
  <% end %>
 
</table>

<div id="images"></div>
<br/>
<p>
  <%= link_to icon('add') + ' ' + t(".new_upload"), new_admin_upload_url, :id => "new_image_link" %>
</p>

<% content_for :head do %>
  <script type="text/javascript">
    jQuery(document).ready(function(){  
      
      jQuery('#new_image_link').click(function(event) { 
        event.preventDefault();
        jQuery(this).hide();
        jQuery.ajax({type: 'GET', url: this.href, data: ({authenticity_token: AUTH_TOKEN}), success: function(r){ jQuery('#images').html(r);} });
      });
      
    });
  </script>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree_essentials-0.2.0 app/views/admin/uploads/index.html.erb
spree_essentials-0.1.4 app/views/admin/uploads/index.html.erb
spree_essentials-0.1.3 app/views/admin/uploads/index.html.erb
spree_essentials-0.1.2 app/views/admin/uploads/index.html.erb
spree_essentials-0.1.1 app/views/admin/uploads/index.html.erb