Sha256: 5b429f0e494df16a3c5658fb6393721c896aa816f09511b750bc97d7830bf8c9

Contents?: true

Size: 520 Bytes

Versions: 2

Compression:

Stored size: 520 Bytes

Contents

%h2 Invoice

%p
   = "You will be billed in 5 days for the following:"

%table
   
   - @invoice.invoice_line_items.each do |item|
      %tr
         %td
            = @subscription.plan.name
         %td
            = "#{item.from.to_s}-#{item.to.to_s}"
         %td
            = "$" + item.price.to_s
   %tr
      %td
         Total:
      %td 
          
      %td
         = "$" + @invoice.amount.to_s
   
%p
   No action is required at this time. If you need any assistance, please contact the administrator.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
saasaparilla-0.2.2 app/views/saasaparilla/notifier/invoice_created.html.haml
saasaparilla-0.2.1 app/views/saasaparilla/notifier/invoice_created.html.haml