Klaus-Uwe Mitterer
f6b7fab525
Modifying inquiry model and creating offer model Creating client profile views Fixing stars and hearts template tags
14 lines
No EOL
390 B
Python
14 lines
No EOL
390 B
Python
from urlaubsauktion.admin import joker_admin as admin
|
|
|
|
from .models import InvoicePayment, Invoice, InvoiceItem
|
|
from .paypal.models import PaypalInvoicePayment
|
|
from .sepa.models import SepaInvoicePayment
|
|
|
|
# Register your models here.
|
|
|
|
admin.register(InvoicePayment)
|
|
admin.register(Invoice)
|
|
admin.register(InvoiceItem)
|
|
|
|
admin.register(PaypalInvoicePayment)
|
|
admin.register(SepaInvoicePayment) |