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>
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
While your base.html doesnt need 'HEADER' beetwen your {% block header %} tags, so it should look like: