I have a view which does the certain task and return to another view which render hello.html template.
def 1stview(request): #Do this #Do that retur
from django.contrib import messages messages.success(request, _('Thank you')) return redirect('/whatever/')