mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
Sli
181e74b1d1
* update_spam_database command to update suspicious domains from an external provider * Add a AntiSpamEmailField that deny emails from suspicious domains * Update documentation
11 lines
325 B
Python
11 lines
325 B
Python
from django.contrib import admin
|
|
|
|
from antispam.models import ToxicDomain
|
|
|
|
|
|
@admin.register(ToxicDomain)
|
|
class ToxicDomainAdmin(admin.ModelAdmin):
|
|
list_display = ("domain", "is_externally_managed", "created")
|
|
search_fields = ("domain", "is_externally_managed", "created")
|
|
list_filter = ("is_externally_managed",)
|