mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
19 lines
388 B
Plaintext
19 lines
388 B
Plaintext
- content_for :page_title do
|
|
= t(:cache_settings)
|
|
|
|
%table.index
|
|
%thead
|
|
%tr
|
|
%th Distributor
|
|
%th Order Cycle
|
|
%th Status
|
|
%th Diff
|
|
%tbody
|
|
- @results.each do |result|
|
|
%tr
|
|
%td= result[:distributor].name
|
|
%td= result[:order_cycle].name
|
|
%td= result[:status] ? 'OK' : 'Error'
|
|
%td
|
|
%pre= result[:diff].to_s(:text)
|