mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
7 lines
No EOL
318 B
Python
7 lines
No EOL
318 B
Python
from django.contrib import admin
|
|
from simple_history.admin import SimpleHistoryAdmin
|
|
from .models import PaymentMethod, GeneralPreferences, Cotisation
|
|
|
|
admin.site.register(PaymentMethod, SimpleHistoryAdmin)
|
|
admin.site.register(GeneralPreferences, SimpleHistoryAdmin)
|
|
admin.site.register(Cotisation, SimpleHistoryAdmin) |