where to import messages in django

from django.contrib import messages
from django.shortcuts import render, redirect
  1. Import the messages module from django.contrib to utilize Django's messaging framework.
  2. Import the render and redirect functions from django.shortcuts for rendering HTML templates and redirecting to other views, respectively.