Files @ be762220af99
Branch filter:

Location: website/www/conservancy/apps/contacts/admin.py

bkuhn
Foresight project wound down a while back.

Foresight project isn't active anymore and informed us a while back that
they weren't. We left them up for a time, but it was confusing
1
2
3
4
5
6
7
8
from django.contrib import admin
from conservancy.apps.contacts.models import ContactEntry

class ContactEntryAdmin(admin.ModelAdmin):
    list_display = ('email', 'subscribe_conservancy')


admin.site.register(ContactEntry, ContactEntryAdmin)