Commit ef7bbf87 by Clinton Blackburn

Merge pull request #120 from edx/ppr-admin-id

Displaying PaymentProcessorResponse ID in admin list
parents 1c414bd7 d4a3a368
...@@ -6,7 +6,7 @@ PaymentProcessorResponse = get_model('payment', 'PaymentProcessorResponse') ...@@ -6,7 +6,7 @@ PaymentProcessorResponse = get_model('payment', 'PaymentProcessorResponse')
class PaymentProcessorResponseAdmin(admin.ModelAdmin): class PaymentProcessorResponseAdmin(admin.ModelAdmin):
list_display = ('processor_name', 'transaction_id', 'basket', 'created') list_display = ('id', 'processor_name', 'transaction_id', 'basket', 'created')
admin.site.register(PaymentProcessorResponse, PaymentProcessorResponseAdmin) admin.site.register(PaymentProcessorResponse, PaymentProcessorResponseAdmin)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment