6 lines
105 B
Python
6 lines
105 B
Python
from django.contrib import admin
|
|
|
|
from apps.payments.models import Payment
|
|
|
|
admin.site.register(Payment)
|