diff --git a/app/grants/admin.py b/app/grants/admin.py index ea1a9f6479d..452ff8ff4c8 100644 --- a/app/grants/admin.py +++ b/app/grants/admin.py @@ -181,7 +181,7 @@ def error_email_copy_not_active(self, instance): class ContributionAdmin(GeneralAdmin): """Define the Contribution administration layout.""" raw_id_fields = ['subscription'] - list_display = ['id', 'txn_url', 'tx_cleared', 'success', 'profile'] + list_display = ['id', 'txn_url', 'profile', 'created_on', 'amount', 'token', 'tx_cleared', 'success'] def txn_url(self, obj): tx_id = obj.tx_id @@ -191,6 +191,12 @@ def txn_url(self, obj): def profile(self, obj): return obj.subscription.contributor_profile + def token(self, obj): + return obj.subscription.token_symbol + + def amount(self, obj): + return obj.subscription.amount_per_period + admin.site.register(PhantomFunding, GeneralAdmin) admin.site.register(MatchPledge, MatchPledgeAdmin)