diff options
author | Magnus Hagander | 2013-11-26 11:14:35 +0000 |
---|---|---|
committer | Magnus Hagander | 2013-11-26 11:14:35 +0000 |
commit | 4c54d0d558744ea0054bbb10a0938166fa5d8311 (patch) | |
tree | ac5f252c9e51440c337719d41a80950602e4ec79 /postgresqleu/paypal/admin.py | |
parent | 9fe24b1f6925b63e6b49eb35ff129809546b68e9 (diff) |
Show paypal fee in transaction overview
Diffstat (limited to 'postgresqleu/paypal/admin.py')
-rw-r--r-- | postgresqleu/paypal/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postgresqleu/paypal/admin.py b/postgresqleu/paypal/admin.py index 805f1fe6..ced7d6a5 100644 --- a/postgresqleu/paypal/admin.py +++ b/postgresqleu/paypal/admin.py @@ -2,7 +2,7 @@ from django.contrib import admin from models import * class TransactionInfoAdmin(admin.ModelAdmin): - list_display = ('timestamp', 'sourceaccount', 'sender', 'amount', 'transtext', 'matched', ) + list_display = ('timestamp', 'sourceaccount', 'sender', 'amount', 'fee', 'transtext', 'matched', ) list_filter = ('sourceaccount', 'matched', ) ordering = ('-timestamp', ) |