root/app/views/admin/artworks/index.rhtml @ 84c62e37
4ca83ea1 | Marc Dequènes (Duck) | <% use_proto_menu -%>
|
|
b689e231 | Marc Dequènes (Duck) | <h2><%= _("List of Artworks") %></h2>
|
|
<p>
|
|||
1a437641 | Marc Dequènes (Duck) | <%
|
|
# work around 'sortable-list' plugin not enforcing default sort
|
|||
params[:sort] ||= "title ASC"
|
|||
%>
|
|||
18785536 | Marc Dequènes (Duck) | <% @artworks = resource_model.paginate(:all, :include => [:artwork_set, :artwork_group], :order => params[:sort], :page => params[:page]) %>
|
|
<%= display_new_action %>
|
|||
<%= will_paginate @artworks %>
|
|||
4ca83ea1 | Marc Dequènes (Duck) | <% form_tag({ :action => 'artworks_selection' }, { :id => 'artworks_selection_form' }) do %>
|
|
<table id="artworks_selection_zone">
|
|||
b689e231 | Marc Dequènes (Duck) | <tr>
|
|
4ca83ea1 | Marc Dequènes (Duck) | <th>#</th>
|
|
b689e231 | Marc Dequènes (Duck) | <th><%= sortable_header :title, :label => _("Title"), :default => true %></th>
|
|
<th><%= sortable_header "artwork_sets.name".to_sym, :label => _("Set") %></th>
|
|||
<th><%= sortable_header "artwork_groups.name".to_sym, :label => _("Group") %></th>
|
|||
<th><%= _("Preview") %></th>
|
|||
<th><%= _("Steps") %></th>
|
|||
<th><%= _("Actions") %></th>
|
|||
</tr>
|
|||
<% @artworks.each do |artwork| %>
|
|||
<tr>
|
|||
bf16d414 | Marc Dequènes (Duck) | <td><%= check_box_tag 'artworks_selection_ids[]', artwork.id, false, :id => "artworks_selection_id_#{artwork.id}" %></td>
|
|
b689e231 | Marc Dequènes (Duck) | <td><%= link_to_resource artwork, artwork.title %></td>
|
|
<td><%= artwork.artwork_set.name if artwork.artwork_set %></td>
|
|||
<td><%= artwork.artwork_group.name if artwork.artwork_group %></td>
|
|||
b247fd58 | Marc Dequènes (Duck) | <td class="admin_artwork_frame"><%= display_thumbnail(artwork.image, :thumb_small) %></td>
|
|
b689e231 | Marc Dequènes (Duck) | <td class="resource_children"><%= link_to_children_index artwork, ArtworkStepImage, _("View Steps") %></td>
|
|
<td class="actions"><%= display_standard_item_actions(artwork) %></td>
|
|||
</tr>
|
|||
<% end %>
|
|||
</table>
|
|||
4ca83ea1 | Marc Dequènes (Duck) | <%= hidden_field_tag 'artworks_selection_action' %>
|
|
<%
|
|||
bf16d414 | Marc Dequènes (Duck) | gen_action_proto_menu('artworks_selection', @selection_action_list)
|
|
4ca83ea1 | Marc Dequènes (Duck) | %>
|
|
<% end %>
|
|||
b689e231 | Marc Dequènes (Duck) | <%= will_paginate @artworks %>
|
|
<%= display_new_action %>
|
|||
</p>
|