Sha256: 11883e94aa292a773774c791910654c816749f0869e1568689a72cf4f1e02e4d

Contents?: true

Size: 870 Bytes

Versions: 6

Compression:

Stored size: 870 Bytes

Contents

<%= render 'spree/admin/shared/settings_checkout_tabs' %>

<% content_for :page_title do %>
  <%= Spree::ReimbursementType.model_name.human(count: :other) %>
<% end %>

<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

6 entries across 6 versions & 1 rubygems

Version Path
solidus_backend-1.3.2 app/views/spree/admin/reimbursement_types/index.html.erb
solidus_backend-1.3.1 app/views/spree/admin/reimbursement_types/index.html.erb
solidus_backend-1.3.0 app/views/spree/admin/reimbursement_types/index.html.erb
solidus_backend-1.3.0.rc2 app/views/spree/admin/reimbursement_types/index.html.erb
solidus_backend-1.3.0.rc1 app/views/spree/admin/reimbursement_types/index.html.erb
solidus_backend-1.3.0.beta1 app/views/spree/admin/reimbursement_types/index.html.erb