3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-07-04 21:04:04 +00:00
coope/preferences/admin.py

9 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.