from django.core.checks import register, Error from django.conf import settings @register() def check_settings(app_configs, **kwargs): errors = [] if not hasattr(settings, 'ALLOCATIONS_EMAILS'): errors.append(Error('Missing settings variable ALLOCATIONS_EMAILS.')) return errors