mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
22 lines
457 B
Plaintext
22 lines
457 B
Plaintext
<% content_for :page_title do %>
|
|
<%= t(:listing_reports) %>
|
|
<% end %>
|
|
|
|
<table class="index">
|
|
<thead>
|
|
<tr data-hook="reports_header">
|
|
<th><%= t(:name) %></th>
|
|
<th><%= t(:description) %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @reports.each do |key, value| %>
|
|
<tr data-hook="reports_row">
|
|
<td><%= link_to value[:name], value[:url] %></td>
|
|
<td><%= value[:description] %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|