!!! 5
%html
%head
%title Family Balance
= wicked_pdf_stylesheet_link_tag 'pdf'
%body
%div.mt-3.w50.float-left
%strong.d-block-subtitle-2= family.name
.d-block.body-2= family.address
.d-block.body-2.mb-2="#{family.city}, #{family.state} #{family.zip}"
%div.mt-3.w-50.float-right
.d-block.overline Students
.d-block.body-2= students
%table.table
%thead
%tr.remove-top-border
%th.caption.text-muted Category
%th
%th.caption.text-muted.text-right Outstanding Balances
%th.caption.text-muted.text-right Unallocated Funds
%tbody
- categories.each do |category|
%tr
%td.caption= category[:title]
%td
%td.caption.text-right= number_to_currency(category[:outstanding])
%td.caption.text-right= number_to_currency(category[:unallocated])
%tr.text-right
%td
%td.caption.font-weight-bold Total
%td.caption.font-weight-bold= number_to_currency(totals[:outstanding])
%td.caption.font-weight-bold= number_to_currency(totals[:unallocated])