mirror of
https://github.com/nanoy42/coope
synced 2024-11-05 01:16:28 +00:00
8 lines
237 B
Python
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.
|