Sha256: 8034afc7a78df9b201955984148e74901099de56454e2cf531a8e75c9c1c1096
Contents?: true
Size: 1.63 KB
Versions: 6
Compression:
Stored size: 1.63 KB
Contents
<%= render 'spree/admin/shared/settings_checkout_tabs' %> <% content_for :page_title do %> <%= page_title %> <% end %> <% content_for :page_actions do %> <ul class="actions inline-menu"> <% if can?(:create, Spree::ReturnReason) %> <li> <%= button_link_to new_button_text, new_object_url, { icon: 'plus', id: 'admin_new_named_type' } %> </li> <% end %> </ul> <% end %> <% if @collection.any? %> <table class="index" id='listing_named_types' data-hook> <colgroup> <col style="width: 65%" /> <col style="width: 20%" /> <col style="width: 15%" /> </colgroup> <thead> <tr data-hook="named_types_header"> <th><%= Spree.t(:name) %></th> <th><%= Spree.t(:active) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @collection.each do |named_type| %> <tr id="<%= spree_dom_id named_type %>" data-hook="named_type_row" class="<%= cycle('odd', 'even')%>"> <td class="align-center"> <%= named_type.name %> </td> <td class="align-center"> <%= Spree.t(named_type.active? ? :say_yes : :say_no) %> </td> <td class="actions"> <% if named_type.mutable? && can?(:update, named_type) %> <%= link_to_edit named_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: resource, new_resource_url: new_object_url %> </div> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems