<%= stylesheet_link_tag "dashboard" %>_

Grades

Total Grades: <%= @grades.count %>

<%= link_to(new_grade_path, :method => :get) do %> Add a New Grade <% end %> <% if @grades.empty? %>
Grade Name Short Name Min Volume Max Volume Min Length Max Length Min Width Max Width Min Height Max Height

No Grades Recorded.

<% else %> <% @grades.each_slice(1) do |row| %> <% row.each do |grade|%> <%= link_to edit_grade_path(grade) do %>
<%= grade.Full_name %> <%= grade.Short_name %> <%= grade.Volume_min %> <%= grade.Volume_max %> <%= grade.Length_min %> <%= grade.Length_max %> <%= grade.Width_min %> <%= grade.Width_max %> <%= grade.Height_min %> <%= grade.Height_max %> <%= link_to "Edit", edit_grade_path(grade), :class => "btn btn-primary" %>
<% end %> <% end %> <% end%> <% end %>
<%= javascript_include_tag "bootstrap.min" %>_