I am not using all-auth
I am using the standard authentication system and url's provided by django.contrib.auth.
I have also ensured that when logging out the user is automatically redirected to the login page
LOGOUT_REDIRECT_URL = "login"
I would like to add a message so the user knows they have been logged out like:
from django.contrib import messages
messages.add_message(request, messages.INFO, 'You have been logged out.')
Would I be able to achieve this without making my own view to logout.
Could I use signals?