!!! 5
%html
%head
%title Status Summary
%meta{ charset: 'utf-8' }
= wicked_pdf_stylesheet_link_tag 'pdf'
%body
%table.table
%thead
%tr
%th.caption.text-muted Status
- grades.each do |grade|
%th.caption.text-muted= grade.name
%th.caption.font-weight-bold Totals
%tbody
- statuses.each_value do |status|
%tr
- if status[:title] == 'Totals'
%td.caption.font-weight-bold= status[:title]
- else
%td.caption.text-muted= status[:title]
- grades.each do |grade|
- if status[:title] == 'Totals'
%td.caption.font-weight-bold= status[grade.grade]
- else
%td.caption= status[grade.grade]
%td.caption.font-weight-bold= status[:all]