Django if Tag
If Statement
An if
statement evaluates a variable and executes a block of code if the value is true.
Elif
The elif
keyword says “if the previous conditions were not true, then try this condition”.
Example
1 2 3 4 5 |
{% if greeting == 1 %} <h1>Hello</h1> {% elif greeting == 2 %} <h1>Welcome</h1> {% endif %} |
Else
The else
keyword catches anything which isn’t caught by the preceding conditions.
Example
1 2 3 4 5 6 7 |
{% if greeting == 1 %} <h1>Hello</h1> {% elif greeting == 2 %} <h1>Welcome</h1> {% else %} <h1>Goodbye</h1> {% endif %} |
Operators
The above examples uses the ==
operator, which is used to check if a variable is equal to a value, but there are many other operators you can use, or you can even drop the operator if you just want to check if a variable is not empty:
==
Is equal to.
!=
Is not equal to.
<
Is less than.
<=
Is less than, or equal to.
>
Is greater than.
>=
Is greater than, or equal to.
and
To check if more than one condition is true.
Example
1 2 3 |
{% if greeting == 1 and day == "Friday" %} <h1>Hello Weekend!</h1> {% endif %} |
or
To check if one of the conditions is true.
and/or
Combine and
and or
.
Parentheses are not allowed in if
statements in Django, so when you combine and
and or
operators, it is important to know that parentheses are added for and
but not for or
.
Meaning that the above example is read by the interpreter like this:
1 |
{% if (greeting == 1 and day == "Friday") or greeting == 5 %} |
in
To check if a certain item is present in an object.
Example
To check if a certain item is present in an object.
1 2 3 4 5 6 |
{% if 'Banana' in fruits %} <h1>Hello</h1> {% else %} <h1>Goodbye</h1> {% endif %} not in |
not in
To check if a certain item is not present in an object.
Example
1 2 3 4 5 |
{% if 'Banana' not in fruits %} <h1>Hello</h1> {% else %} <h1>Goodbye</h1> {% endif %} |
is
Check if two objects are the same.
This operator is different from the ==
operator, because the ==
operator checks the values of two objects, but the is
operator checks the identity of two objects.
In the view we have two objects, x
and y
, with the same values:
Example
views.py
:
1 2 3 4 5 6 7 8 9 10 |
from django.http import HttpResponse from django.template import loader def testing(request): template = loader.get_template('template.html') context = { 'x': ['Apple', 'Banana', 'Cherry'], 'y': ['Apple', 'Banana', 'Cherry'], } return HttpResponse(template.render(context, request)) |
The two objects have the same value, but is it the same object?
Let us try the same example with the ==
operator instead:
How can two objects be the same? Well, if you have two objects that points to the same object, then the is
operator evaluates to true:
We will demonstrate this by using the {% with %}
tag, which allows us to create variables in the template:
Example
1 2 3 4 5 6 7 |
{% with var1=x var2=x %} {% if var1 == var2 %} <h1>YES</h1> {% else %} <h1>NO</h1> {% endif %} {% endwith %} |
is not
To check if two objects are not the same.