I have tried with
{% if request.path == "/{{user.username}}" %}
You are in Contact</p>
{% else %}
nono
But It doesn't work
I have tried with
{% if request.path == "/{{user.username}}" %}
You are in Contact</p>
{% else %}
nono
But It doesn't work
If it fails, output something useful so you can see why:
{% if request.path == "/{{ user.username }}" %}
You are in Contact
{% else %}
{{ request.path }} is not the same as /{{ user.username }}
{% endif %}