Sha256: 953d780ebe9b57e526cfd292c1a6ff779afed59434b69679028281cb6bf1d482

Contents?: true

Size: 681 Bytes

Versions: 12

Compression:

Stored size: 681 Bytes

Contents

<% content_for :page_title do %>
  <%= Spree.t(:reports) %> <%= Spree.t('admin.reports.for', store_name: current_store.unique_name) %>
<% end %>
<div class="table-responsive border rounded bg-white">
  <table class="table">
    <thead class="text-muted">
      <tr data-hook="reports_header">
        <th><%= Spree.t(:name) %></th>
        <th><%= Spree.t(:description) %></th>
      </tr>
    </thead>
    <tbody>
      <% @reports.each do |key, value| %>
      <tr data-hook="reports_row">
        <td><%= link_to value[:name], send("#{key}_admin_reports_url".to_sym) %></td>
        <td><%= value[:description] %></td>
      </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
spree_backend-4.8.4 app/views/spree/admin/reports/index.html.erb
spree_backend-4.8.3 app/views/spree/admin/reports/index.html.erb
spree_backend-4.8.2 app/views/spree/admin/reports/index.html.erb
spree_backend-4.8.1 app/views/spree/admin/reports/index.html.erb
spree_backend-4.7.2 app/views/spree/admin/reports/index.html.erb
spree_backend-4.6.2 app/views/spree/admin/reports/index.html.erb
spree_backend-4.7.1 app/views/spree/admin/reports/index.html.erb
spree_backend-4.7.0 app/views/spree/admin/reports/index.html.erb
spree_backend-4.6.1 app/views/spree/admin/reports/index.html.erb
spree_backend-4.6.0 app/views/spree/admin/reports/index.html.erb
spree_backend-4.5.1 app/views/spree/admin/reports/index.html.erb
spree_backend-4.5.0 app/views/spree/admin/reports/index.html.erb