Removed in Django 4.0
The ifequal tag was deprecated in Django 3.1 and removed in Django 4.0.
Use {% if a == b %} instead.
The ifequal tag compared two values and displayed the contents of the block if they were equal.
Old Syntax (No Longer Works)
{% ifequal user.username "admin" %}
Welcome, admin!
{% endifequal %}
New Syntax
{% if user.username == "admin" %}
Welcome, admin!
{% endif %}

Commentary
This tag no longer exists. Use the
iftag with the==operator instead.