If a word in path Path
{% if 'account' in request.path %}
hello world!
{% endif %}
Find previous referrer
{{ request.META.HTTP_REFERER }}
In view
req.META['HTTP_REFERER'] = 'google.com'
t = Template("{{ request.META.HTTP_REFERER }}")
Redirect in view
from django.http import HttpResponseRedirect
return HttpResponseRedirect('/url/url1/')