mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 03:03:21 +00:00
13 lines
234 B
Python
13 lines
234 B
Python
from django.contrib import admin
|
|
|
|
from accounting.models import *
|
|
|
|
|
|
admin.site.register(Customer)
|
|
admin.site.register(ProductType)
|
|
admin.site.register(Product)
|
|
admin.site.register(GeneralJournal)
|
|
admin.site.register(GenericInvoice)
|
|
|
|
|