Django : after include tag getting critical Error

113 Views Asked by At

after i'm using include tag in django template, i'm getting error.

error:

RecursionError at /home/
maximum recursion depth exceeded
Error during template rendering

my base.html file .

<html>
{% load static %}
<some static css here>
{% include "inc/header.html" %}
     {% block header %} HEADER {% endblock header %}
<some static js here>
</html>

my header file is

{% extends 'base.html' %}
<p> test header</p>
1

There are 1 best solutions below

4
On

You are right now doing two things at the same time, you are extending 'base.html' file, while in the same time you are including 'header.html'.

This is why you get recursion problems.

For things to work properly you need to remove {% include %} block of code. So your header file looks like

{% extends 'base.html' %}
{% block header %}
<p> Test Header </p>
{% endblock %}

While your base.html doesnt need 'HEADER' beetwen your {% block header %} tags, so it should look like:

<html>
{% load static %}
<some static css here>
{% block header %}{% endblock %}
<some static js here>
</html>