Note admin fully implemented
This commit is contained in:
parent
1bfcedd4fe
commit
3a6d39a53d
2 changed files with 41 additions and 10 deletions
|
|
@ -3,8 +3,9 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from django.contrib import admin
|
||||
from polymorphic.admin import PolymorphicParentModelAdmin, \
|
||||
PolymorphicChildModelAdmin, PolymorphicChildModelFilter
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from polymorphic.admin import PolymorphicChildModelAdmin, \
|
||||
PolymorphicChildModelFilter, PolymorphicParentModelAdmin
|
||||
|
||||
from .models.notes import Alias, Note, NoteClub, NoteSpecial, NoteUser
|
||||
from .models.transactions import MembershipTransaction, Transaction, \
|
||||
|
|
@ -93,16 +94,46 @@ class NoteUserAdmin(PolymorphicChildModelAdmin):
|
|||
return False
|
||||
|
||||
|
||||
@admin.register(Transaction)
|
||||
class TransactionAdmin(admin.ModelAdmin):
|
||||
"""
|
||||
Admin customisation for Transaction
|
||||
"""
|
||||
list_display = ('created_at', 'poly_source', 'poly_destination',
|
||||
'quantity', 'amount', 'transaction_type', 'valid')
|
||||
list_filter = ('transaction_type', 'valid')
|
||||
autocomplete_fields = ('source', 'destination',)
|
||||
|
||||
def poly_source(self, obj):
|
||||
"""
|
||||
Force source to resolve polymorphic object
|
||||
"""
|
||||
return str(obj.source)
|
||||
|
||||
poly_source.short_description = _('source')
|
||||
|
||||
def poly_destination(self, obj):
|
||||
"""
|
||||
Force destination to resolve polymorphic object
|
||||
"""
|
||||
return str(obj.destination)
|
||||
|
||||
poly_destination.short_description = _('destination')
|
||||
|
||||
|
||||
@admin.register(TransactionTemplate)
|
||||
class TransactionTemplateAdmin(admin.ModelAdmin):
|
||||
"""
|
||||
Admin customisation for TransactionTemplate
|
||||
"""
|
||||
list_display = ('name', 'destination', 'amount', 'template_type')
|
||||
list_filter = ('destination', 'template_type',)
|
||||
# autocomplete_fields = ('destination',)
|
||||
list_display = ('name', 'poly_destination', 'amount', 'template_type')
|
||||
list_filter = ('template_type',)
|
||||
autocomplete_fields = ('destination',)
|
||||
|
||||
def poly_destination(self, obj):
|
||||
"""
|
||||
Force destination to resolve polymorphic object
|
||||
"""
|
||||
return str(obj.destination)
|
||||
|
||||
# Register other models here.
|
||||
admin.site.register(MembershipTransaction)
|
||||
admin.site.register(Transaction)
|
||||
poly_destination.short_description = _('destination')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue