Sha256: 255f2ec75b3d0f5fd200810c1bf48fc45f75ab15d2492471a1e76a35bb30e8f0
Contents?: true
Size: 1.97 KB
Versions: 6
Compression:
Stored size: 1.97 KB
Contents
<% content_for :page_title do %> <%= Spree::OptionType.model_name.human(count: :other) %> <% end %> <% content_for :page_actions do %> <% if can?(:create, Spree::OptionType) %> <li id="new_ot_link"> <%= button_link_to Spree.t(:new_option_type), new_admin_option_type_url, { :remote => true, :icon => 'plus', :id => 'new_option_type_link' } %> </li> <% end %> <% end %> <div id="new_option_type"></div> <% if @option_types.any? %> <table class="index sortable" id="listing_option_types" data-hook data-sortable-link="<%= update_positions_admin_option_types_url %>"> <colgroup> <col style="width: 10%"> <col style="width: 35%"> <col style="width: 40%"> <col style="width: 15%"> </colgroup> <thead> <tr data-hook="option_header"> <th class="no-border"></th> <th><%= Spree::OptionType.human_attribute_name(:name) %></th> <th><%= Spree::OptionType.human_attribute_name(:presentation) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @option_types.each do |option_type| %> <tr class="spree_option_type <%= cycle('odd', 'even')%>" id="<%= spree_dom_id option_type %>" data-hook="option_row"> <td class="no-border"><span class="handle"></span></td> <td class="align-center"><%= option_type.name %></td> <td class="align-center presentation"><%= option_type.presentation %></td> <td class="actions"> <% if can?(:update, option_type) %> <%= link_to_edit(option_type, :class => 'admin_edit_option_type', :no_text => true) %> <% end %> <% if can?(:destroy, option_type) %> <%= link_to_delete(option_type, :no_text => true) %> <% end %> </td> </tr> <% end %> </tbody> </table> <% else %> <div class="alpha twelve columns no-objects-found"> <%= render 'spree/admin/shared/no_objects_found', resource: Spree::OptionType, new_resource_url: new_object_url %> </div> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems