<%= stylesheet_link_tag "dashboard" %>_

Pearlception Dashboard

<% if current_user.admin? %>

Recent Results From All Companies

<% else %>

Recent Results

<% end %>
<% if current_user.admin? %> <% end %> <% if current_user.admin? %> <% @results.each_slice(1) do |row| %> <% row.each do |result| run = Run.find(result.id) #company = Company.find(run.company_id) %> <% end %> <% end %> <% else %> <% @results.each_slice(1) do |row| %> <% row.each do |result| run = Run.find(result.id) %> <% end %> <% end %> <% end %>
CompanyRun Date Location Harvest Time Supplier Distributor Total Processed Other Oyster Info
<%= #company.company_name "Fake Industries" %> <%= run.runDate %> <%= run.location ? run.location : "" %> <%= "" %> <%= run.supplier ? run.supplier : "" %> <%= run.distributor ? run.distributor : "" %> <%= result.total %> <%= run.other ? run.other : "" %>
<%= run.runDate %> <%= run.location ? run.location : "" %> <%= "" %> <%= run.supplier ? run.supplier : "" %> <%= run.distributor ? run.distributor : "" %> <%= result.total %> <%= run.other ? run.other : "" %> <%= link_to "Show", oysters_index_path( :result_id => result.id, :page_num => params[:page]), :class => "btn btn-primary" %>
<%= paginate @results %>
<%= page_entries_info @results %>
<%= javascript_include_tag "bootstrap.min" %>_