2010-09-26 21:32:53 +00:00
|
|
|
from django.contrib import admin
|
2023-10-19 22:44:24 +00:00
|
|
|
|
2024-04-09 12:50:06 +00:00
|
|
|
from .models import Unsubscription
|
2010-09-26 21:32:53 +00:00
|
|
|
|
|
|
|
|
2024-04-09 12:50:06 +00:00
|
|
|
@admin.register(Unsubscription)
|
|
|
|
class UnsubscriptionAdmin(admin.ModelAdmin):
|
2024-12-17 23:05:34 +00:00
|
|
|
list_display = ['created', 'email', 'mailout', 'actioned']
|
|
|
|
list_editable = ['actioned']
|
2024-12-10 23:37:02 +00:00
|
|
|
list_filter = ['mailout', 'actioned']
|
2024-04-10 06:18:51 +00:00
|
|
|
search_fields = ['email', 'mailout']
|