13 lines
258 B
Python
13 lines
258 B
Python
from django.contrib import admin
|
|
from tpv.models import PaymentTPV
|
|
from unfold.admin import ModelAdmin
|
|
|
|
|
|
# Register your models here.
|
|
@admin.register(PaymentTPV)
|
|
class PaymentTPVAdmin(ModelAdmin):
|
|
list_display = (
|
|
"hash",
|
|
"amount",
|
|
)
|