feat: added tpv app
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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",
|
||||
)
|
||||
Reference in New Issue
Block a user