2017-04-24 17:51:12 +02:00
|
|
|
#
|
2023-04-04 18:39:45 +02:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
2017-04-24 17:51:12 +02:00
|
|
|
#
|
2023-04-04 18:39:45 +02:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-04-24 17:51:12 +02:00
|
|
|
#
|
2023-04-04 18:39:45 +02:00
|
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith3
|
2017-04-24 17:51:12 +02:00
|
|
|
#
|
2023-04-04 18:39:45 +02:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 17:51:12 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2016-01-28 16:53:37 +01:00
|
|
|
from django.contrib import admin
|
|
|
|
|
|
|
|
from accounting.models import *
|
|
|
|
|
2016-04-20 02:07:01 +02:00
|
|
|
admin.site.register(BankAccount)
|
|
|
|
admin.site.register(ClubAccount)
|
2016-01-28 16:53:37 +01:00
|
|
|
admin.site.register(GeneralJournal)
|
2016-05-03 08:50:54 +02:00
|
|
|
admin.site.register(AccountingType)
|
2016-08-24 19:50:22 +02:00
|
|
|
admin.site.register(SimplifiedAccountingType)
|
2016-04-20 02:07:01 +02:00
|
|
|
admin.site.register(Operation)
|
2016-10-05 15:54:00 +02:00
|
|
|
admin.site.register(Label)
|
2016-11-06 23:34:15 +01:00
|
|
|
admin.site.register(Company)
|