2021-03-24 06:43:05 +00:00
|
|
|
from urlaubsauktion.admin import joker_admin as admin
|
2021-03-21 15:50:50 +00:00
|
|
|
|
2021-03-24 06:43:05 +00:00
|
|
|
from .models import InvoicePayment, Invoice, InvoiceItem
|
2021-03-21 15:50:50 +00:00
|
|
|
from .paypal.models import PaypalInvoicePayment
|
|
|
|
from .sepa.models import SepaInvoicePayment
|
2021-04-18 10:02:17 +00:00
|
|
|
from .demo.models import DemoInvoicePayment
|
2021-03-21 15:50:50 +00:00
|
|
|
|
|
|
|
# Register your models here.
|
|
|
|
|
2021-03-24 06:43:05 +00:00
|
|
|
admin.register(InvoicePayment)
|
|
|
|
admin.register(Invoice)
|
|
|
|
admin.register(InvoiceItem)
|
2021-03-21 15:50:50 +00:00
|
|
|
|
2021-03-24 06:43:05 +00:00
|
|
|
admin.register(PaypalInvoicePayment)
|
2021-04-18 10:02:17 +00:00
|
|
|
admin.register(SepaInvoicePayment)
|
|
|
|
admin.register(DemoInvoicePayment)
|