Something like:
Welcome {user that is logged in}!
It should appear when the user logs in. Thank you!
Something like:
Welcome {user that is logged in}!
It should appear when the user logs in. Thank you!
You gotta create your own login view and then you can use messages to display the welcome message like:
from django.contrib import messages
messages.success(request, gettext("Login successfully !"))
# gettext is for the translation, you don't need it