mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
13 lines
239 B
Python
13 lines
239 B
Python
from django.contrib import admin
|
|
|
|
from accounting.models import *
|
|
|
|
|
|
admin.site.register(BankAccount)
|
|
admin.site.register(ClubAccount)
|
|
admin.site.register(GeneralJournal)
|
|
admin.site.register(AccountingType)
|
|
admin.site.register(Operation)
|
|
|
|
|