summaryrefslogtreecommitdiff
path: root/billing/app/views/payments/_transaction_details.html.haml
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-05-07 11:32:11 -0700
committerAzul <azul@leap.se>2013-07-17 10:47:13 +0200
commita00470d0c046774edc94ef01ef9bc590e8d58ac9 (patch)
tree6745c8edb80ae2bec3ae3896ce806368dccada9d /billing/app/views/payments/_transaction_details.html.haml
parent62b32320f38627dad870c7b3157576c48674c42b (diff)
Display 3 most recent transactions on a customer's page, with a link to all of their transactions.
Diffstat (limited to 'billing/app/views/payments/_transaction_details.html.haml')
-rw-r--r--billing/app/views/payments/_transaction_details.html.haml15
1 files changed, 15 insertions, 0 deletions
diff --git a/billing/app/views/payments/_transaction_details.html.haml b/billing/app/views/payments/_transaction_details.html.haml
new file mode 100644
index 0000000..53483d9
--- /dev/null
+++ b/billing/app/views/payments/_transaction_details.html.haml
@@ -0,0 +1,15 @@
+%p
+ = transaction.id
+ Type:
+ = transaction.type
+ 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