from custom_admin.models import AdminNotification
AdminNotification.objects.filter(message__contains='{{').delete()
AdminNotification.objects.filter(message__contains='truncatewords').delete()
print("Cleaned up bad notifications")
