JourneyJoker/payment/admin.py

8 lines
178 B
Python
Raw Normal View History

2019-12-24 13:41:49 +00:00
from django.contrib import admin
from payment.models import Payment, KlarnaPayment
# Register your models here.
admin.site.register(Payment)
admin.site.register(KlarnaPayment)