mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-06 17:36:20 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m18s
24 lines
456 B
Python
24 lines
456 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",
|
|
"number_of_months",
|
|
"paid",
|
|
"paid_at",
|
|
"method",
|
|
"created_at",
|
|
"updated_at",
|
|
)
|
|
|
|
|
|
admin.site.register(Payment, PaymentAdmin)
|
|
admin.site.register(BillFormula)
|
|
admin.site.register(Topup)
|