3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-08-19 08:23:39 +00:00
coope/preferences/admin.py
2018-10-06 00:03:02 +02:00

8 lines
237 B
Python

from django.contrib import admin
from .models import PaymentMethod, GeneralPreferences, Cotisation
admin.site.register(PaymentMethod)
admin.site.register(GeneralPreferences)
admin.site.register(Cotisation)
# Register your models here.