Sha256: 32bb073f6dba204313f6f741efdd078a569464e3f55579465662f39ef6282563
Contents?: true
Size: 1.03 KB
Versions: 3
Compression:
Stored size: 1.03 KB
Contents
<%= render partial: 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= Spree.t(:reimbursement_types) %> <% end %> <% if @reimbursement_types.any? %> <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> <% else %> <div class="alpha twelve columns no-objects-found"> <%= Spree.t(:no_resource_found, resource: I18n.t(:other, scope: 'activerecord.models.spree/reimbursement_type')) %> </div> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems