summaryrefslogtreecommitdiff
path: root/billing/app/views/billing_admin/show.html.haml
blob: 78843e58d3f4cac5a2b929cb97d59991bac9e98c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- # todo: move into helper, as following 2 are pretty much identical
%legend= t(:more_than_90_days_past_due)
- if @past_due_atleast_90_days.empty?
  = t(:none)
- else
  - @past_due_atleast_90_days.each do |past_due_subscription|
    = render :partial => "subscriptions/subscription_details", :locals => {:subscription => past_due_subscription, :show_user => user_for_subscription(past_due_subscription)}

%legend= t(:all_past_due)
- if @all_past_due.empty?
  = t(:none)
- else
  - @all_past_due.each do |past_due_subscription|
    = render :partial => "subscriptions/subscription_details", :locals => {:subscription => past_due_subscription, :show_user => user_for_subscription(past_due_subscription)}

%legend= t(:your_settings)
= link_to 'view own billing settings', show_or_new_customer_link(current_user)