Sha256: b3d706516ba46d8d689d854c9f1db0e251185bb6c3ebb263c53a47dbc8ecf20e
Contents?: true
Size: 1.59 KB
Versions: 1
Compression:
Stored size: 1.59 KB
Contents
<% content_for :page_title do %> <%= Spree::OptionType.model_name.human(count: :many) %> <% end %> <% content_for :page_actions do %> <span id="new_ot_link"> <%= button_link_to Spree.t(:new_option_type), new_object_url, { class: "btn-success", icon: 'add', id: 'new_option_type_link' } %> </span> <% end %> <div id="new_option_type"></div> <% if @option_types.any? %> <table class="table sortable" id="listing_option_types" data-hook data-sortable-link="<%= update_positions_admin_option_types_url %>"> <thead> <tr data-hook="option_header"> <th class="no-border"></th> <th><%= Spree.t(:name) %></th> <th><%= Spree.t(: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="move-handle text-center"> <span class="icon icon-move handle"></span> </td> <td><%= option_type.name %></td> <td class="presentation"><%= option_type.presentation %></td> <td class="actions actions-2 text-right"> <%= link_to_edit(option_type, class: 'admin_edit_option_type', no_text: true) %> <%= link_to_delete(option_type, no_text: true) %> </td> </tr> <% end %> </tbody> </table> <% else %> <div class="alert alert-info no-objects-found"> <%= Spree.t(:no_resource_found, resource: Spree::OptionType.model_name.human(count: :many)) %>, <%= link_to Spree.t(:add_one), new_object_url %>! </div> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_backend-3.0.0.rc1 | app/views/spree/admin/option_types/index.html.erb |