Sha256: 12dc25fb0e30a7c69a767174d18c99356545c07acf97282e79263176e838e5f3

Contents?: true

Size: 645 Bytes

Versions: 5

Compression:

Stored size: 645 Bytes

Contents

<% @galleries.each do |gallery| %>
	<tr>
		<td><%= link_to image_tag(gallery.file_url(:thumb)), gallery_path(gallery) %></td>
		<td>
			<%= link_to content_tag(:i, nil, :class => "fa fa-chevron-up"), move_to_better_gallery_path(gallery), :method => :put, :remote => true %>
			<%= link_to content_tag(:i, nil, :class => "fa fa-chevron-down"), move_to_worst_gallery_path(gallery), :method => :put, :remote => true %>
		</td>
		<td>
			<%= render 'shared/show_icon_button', resource: gallery %>
			<%= render 'shared/edit_icon_button', resource: gallery %>

			<%= render 'shared/delete_icon_button', resource: gallery %>
		</td>
	</tr>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
adminpanel-2.1.2 app/views/adminpanel/galleries/_galleries_table.html.erb
adminpanel-2.1.1 app/views/adminpanel/galleries/_galleries_table.html.erb
adminpanel-2.1.0 app/views/adminpanel/galleries/_galleries_table.html.erb
adminpanel-2.0.1 app/views/adminpanel/galleries/_galleries_table.html.erb
adminpanel-2.0.0 app/views/adminpanel/galleries/_galleries_table.html.erb