summaryrefslogtreecommitdiff
path: root/billing/app/views/customer/_transaction.html.haml
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-04-18 11:51:15 -0700
committerAzul <azul@leap.se>2013-07-17 10:47:13 +0200
commit416ae5da6b87c78fcf49592885a916e9ce4f0904 (patch)
tree50a06fc3354b1dd32f5fac0870bf044d1ea5af36 /billing/app/views/customer/_transaction.html.haml
parent6d1e5b052f88029039164e9a586d512f55679de4 (diff)
Basic display of a customer's transaction information
Diffstat (limited to 'billing/app/views/customer/_transaction.html.haml')
-rw-r--r--billing/app/views/customer/_transaction.html.haml15
1 files changed, 15 insertions, 0 deletions
diff --git a/billing/app/views/customer/_transaction.html.haml b/billing/app/views/customer/_transaction.html.haml
new file mode 100644
index 0000000..97842dc
--- /dev/null
+++ b/billing/app/views/customer/_transaction.html.haml
@@ -0,0 +1,15 @@
+%p
+ = transaction.id
+ Type:
+ = transaction.type
+ Transaction Amount:
+ = number_to_currency(transaction.amount)
+ Status:
+ = transaction.status
+ Date
+ = transaction.created_at
+ - if sub_start = transaction.subscription_details.billing_period_start_date
+ From subscription which started
+ = sub_start
+ - else
+ Not paid as part of subscription \ No newline at end of file