Sha256: 548b70913999c2a02aa66ea91e7a6210c663cfde0c90f54d0129b6de56bba712
Contents?: true
Size: 930 Bytes
Versions: 26
Compression:
Stored size: 930 Bytes
Contents
<%= render 'spree/admin/shared/settings_checkout_tabs' %> <% admin_breadcrumb(Spree.t(:settings)) %> <% admin_breadcrumb(Spree.t('admin.tab.checkout')) %> <% admin_breadcrumb(plural_resource_name(Spree::ReimbursementType)) %> <table class="index" id='listing_reimbursement_types' data-hook> <thead> <tr data-hook="reimbursement_types_header"> <th><%= Spree::ReimbursementType.human_attribute_name(:name) %></th> <th><%= Spree::ReimbursementType.human_attribute_name(:type) %></th> </tr> </thead> <tbody> <% @reimbursement_types.each do |reimbursement_type| %> <tr id="<%= spree_dom_id reimbursement_type %>" data-hook="reimbursement_type_row" class="<%= cycle('odd', 'even')%>"> <td class="align-center"> <%= reimbursement_type.name.humanize %> </td> <td> <%= reimbursement_type.type %> </td> </tr> <% end %> </tbody> </table>
Version data entries
26 entries across 26 versions & 1 rubygems