Skip to content

Commit

Permalink
Oops, forgot fee in list_display
Browse files Browse the repository at this point in the history
  • Loading branch information
anttihirvonen committed Sep 24, 2013
1 parent b7d8536 commit cbadb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotmembership/apps/billing/admin.py
Expand Up @@ -12,7 +12,7 @@ class InvoiceAdmin(reversion.VersionAdmin):
readonly_fields = ('amount', "reference_number", "for_year", 'member', 'created', 'fee', 'due_date')
fields = ('member', 'created', 'fee', 'due_date', 'amount', 'reference_number', 'status', 'payment_date',
'payment_method')
list_display = ("member", "status", "reference_number")
list_display = ("member", "status", "reference_number", "fee")
list_filter = ("status", "fee")
actions = None

Expand Down

0 comments on commit cbadb07

Please sign in to comment.