Klaus-Uwe Mitterer
54e84be36a
Copy over payment system from kumi.xxx Add missing requirements Other stuff
13 lines
No EOL
348 B
Python
13 lines
No EOL
348 B
Python
from django.contrib import admin
|
|
|
|
from .models import InvoicePayment, Invoice
|
|
from .paypal.models import PaypalInvoicePayment
|
|
from .sepa.models import SepaInvoicePayment
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(InvoicePayment)
|
|
admin.site.register(Invoice)
|
|
|
|
admin.site.register(PaypalInvoicePayment)
|
|
admin.site.register(SepaInvoicePayment) |