I have an html template, which is used to render an email, in that template, I want to attach verification links.
I am using the following code to generate the link
{% url 'verify_email' token=token email=email %}
but this one generates following URL instead of absolute URL.
I read this SO thread
and some initial google results but all of them seems old and not working for me.
TLDR: How do I generate absolute URLs in Django2 template files