diff options
author | jessib <jessib@leap.se> | 2013-04-18 11:51:15 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:13 +0200 |
commit | 416ae5da6b87c78fcf49592885a916e9ce4f0904 (patch) | |
tree | 50a06fc3354b1dd32f5fac0870bf044d1ea5af36 /billing/app/views/customer/edit.html.haml | |
parent | 6d1e5b052f88029039164e9a586d512f55679de4 (diff) |
Basic display of a customer's transaction information
Diffstat (limited to 'billing/app/views/customer/edit.html.haml')
-rw-r--r-- | billing/app/views/customer/edit.html.haml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/billing/app/views/customer/edit.html.haml b/billing/app/views/customer/edit.html.haml index 400c5e2..686c551 100644 --- a/billing/app/views/customer/edit.html.haml +++ b/billing/app/views/customer/edit.html.haml @@ -17,9 +17,13 @@ Default Credit Card = @default_cc.masked_number = # (#{link_to @default_cc.token, edit_credit_card_info_path(:id => @default_cc.token)}) + %li + Transaction History + = render(:partial => "transaction", :collection => @transactions) - if @subscriptions.any? %li - Active Subscriptions # todo: won't really have multiple subscriptions + Active Subscriptions + = # todo: won't really have multiple subscriptions = render(:partial => "subscription", :collection => @subscriptions) = hidden_field_tag :tr_data, @tr_data - = f.submit 'Save Payment Info'
\ No newline at end of file + = f.submit 'Save Customer Info'
\ No newline at end of file |