diff options
author | Alban Gruin | 2017-01-22 15:27:02 +0100 |
---|---|---|
committer | Alban Gruin | 2017-01-22 15:27:02 +0100 |
commit | 35ecadcbe283b2c1368141be5bec16d66c443f7c (patch) | |
tree | 3201d747c0f43976fd0eda7bbf4cd3b28cf75285 /admin.py | |
parent | 6cb64910d0c96f144fef7a42f2b2883474031959 (diff) |
Ajout du modèle des inscriptions pour les notifications par email
Diffstat (limited to 'admin.py')
-rw-r--r-- | admin.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ from django.contrib import admin -from edt.models import Timetable, LastUpdate, Group, Room, Course +from edt.models import Timetable, LastUpdate, Group, Subscription, Room, Course @admin.register(Timetable) @@ -24,6 +24,11 @@ class GroupAdmin(admin.ModelAdmin): readonly_fields = ("mention", "subgroup", "td", "tp",) +@admin.register(Subscription) +class SubscriptionAdmin(admin.ModelAdmin): + list_display = ("email", "group", "active",) + + @admin.register(Room) class RoomAdmin(admin.ModelAdmin): pass |