Sith/accounting/admin.py

37 lines
909 B
Python
Raw Normal View History

#
# Copyright 2023 © AE UTBM
# ae@utbm.fr / ae.info@utbm.fr
#
# This file is part of the website of the UTBM Student Association (AE UTBM),
# https://ae.utbm.fr.
#
# You can find the source code of the website at https://github.com/ae-utbm/sith
#
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
2024-09-23 10:25:27 +02:00
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
# OR WITHIN THE LOCAL FILE "LICENSE"
#
#
2016-01-28 16:53:37 +01:00
from django.contrib import admin
from accounting.models import (
AccountingType,
BankAccount,
ClubAccount,
Company,
GeneralJournal,
Label,
Operation,
SimplifiedAccountingType,
)
2016-01-28 16:53:37 +01: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)
admin.site.register(Operation)
2016-10-05 15:54:00 +02:00
admin.site.register(Label)
admin.site.register(Company)