Which of the following is NOT a valid template tag in Django?

Which of the following is NOT a valid template tag in Django?

a) {% for %}
b) {% if %}
c) {% static %}
d) {% fetch %}

Answer:

d) {% fetch %}

Explanation:

In Django templates, there is no {% fetch %} tag. However, {% for %}, {% if %}, and {% static %} are commonly used template tags.

Reference:

Django Quiz – MCQ Questions and Answers

Scroll to Top