feat: added tpv app

This commit is contained in:
Pablo Moreno
2024-03-22 00:44:49 +01:00
parent a13eb6c9d9
commit b8562b3d7b
27 changed files with 1153 additions and 7 deletions
+12
View File
@@ -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",
)