mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-06 23:46:19 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m58s
23 lines
428 B
Python
23 lines
428 B
Python
from django.contrib import admin
|
|
from .models import Payment, BillFormula, Topup
|
|
|
|
# Register your models here.
|
|
|
|
|
|
class PaymentAdmin(admin.ModelAdmin):
|
|
list_display = (
|
|
"id",
|
|
"user",
|
|
"amount",
|
|
"paid",
|
|
"paid_at",
|
|
"method",
|
|
"created_at",
|
|
"updated_at",
|
|
)
|
|
|
|
|
|
admin.site.register(Payment, PaymentAdmin)
|
|
admin.site.register(BillFormula)
|
|
admin.site.register(Topup)
|