Sith/accounting/admin.py

30 lines
789 B
Python
Raw Permalink Normal View History

# -*- coding:utf-8 -*
#
# 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/sith3
#
# 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"
#
#
2016-01-28 15:53:37 +00:00
from django.contrib import admin
from accounting.models import *
admin.site.register(BankAccount)
admin.site.register(ClubAccount)
2016-01-28 15:53:37 +00:00
admin.site.register(GeneralJournal)
2016-05-03 06:50:54 +00:00
admin.site.register(AccountingType)
2016-08-24 17:50:22 +00:00
admin.site.register(SimplifiedAccountingType)
admin.site.register(Operation)
2016-10-05 13:54:00 +00:00
admin.site.register(Label)
admin.site.register(Company)