Sha256: 67e3f154f064d5d6ad80ab489ce3e5939b143ab8bf4921daae56c12d4eee0179
Contents?: true
Size: 772 Bytes
Versions: 27
Compression:
Stored size: 772 Bytes
Contents
<%= render partial: 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= Spree.t(:reimbursement_types) %> <% end %> <table class="index" id='listing_reimbursement_types' data-hook> <thead> <tr data-hook="reimbursement_types_header"> <th><%= Spree.t(:name) %></th> <th><%= Spree.t(: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
27 entries across 27 versions & 1 rubygems