I need some help. I want to list all user avoid the login user.
if I print user= juan if I print usuario.username=juan There have the same string
{% if usuario.username == user %}
Nothing
{% else %}
<tr><td>
{{usuario.username}}
<img src="{% static 'assets/img/icono_writeMSJ.png' %}" height="30px">
</td>
</tr>
{% endif %}
if i change for example
{% if usuario.username == 'juan' %}
Nothing
{% else %}
<tr><td>
{{usuario.username}}
<img src="{% static 'assets/img/icono_writeMSJ.png' %}" height="30px">
</td>
</tr>
{% endif %}
this work fine, why?? :(