Sha256: 367f779d1125903b2a5adca2fd9f68d7f4970e5a7c2ea88ef4866995bed6c37a

Contents?: true

Size: 503 Bytes

Versions: 6

Compression:

Stored size: 503 Bytes

Contents

<% content_for :page_title do %>
  <%= Spree.t(:listing_reports) %>
<% end %>

<table class="index">
  <thead>
    <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>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree_backend-2.0.4 app/views/spree/admin/reports/index.html.erb
spree_backend-2.0.3 app/views/spree/admin/reports/index.html.erb
spree_backend-2.0.2 app/views/spree/admin/reports/index.html.erb
spree_backend-2.0.1 app/views/spree/admin/reports/index.html.erb
spree_backend-2.0.0 app/views/spree/admin/reports/index.html.erb
spree_backend-2.0.0.rc1 app/views/spree/admin/reports/index.html.erb