mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
10 lines
234 B
Python
10 lines
234 B
Python
from django.contrib import admin
|
|
|
|
from marketing.models import CapturedEmail
|
|
|
|
|
|
@admin.register(CapturedEmail)
|
|
class CapturedEmailAdmin(admin.ModelAdmin):
|
|
model = CapturedEmail
|
|
list_display = ("email", "referrer", "page_slug")
|