-# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from django.conf.urls import url
from django.contrib import admin
from django.http.response import HttpResponse
class SubscriptionAdmin(admin.ModelAdmin):
+ list_display = ('email', 'active')
+ list_filter = ('active',)
+
def get_urls(self):
urls = super(SubscriptionAdmin, self).get_urls()
my_urls = [