Hi,
when including another template which defines a block, is there a way to override the block?
Say I have a templateA.html like this:
<head>
<title>{% block title %}Template A{% endblock title%}</title>
</head>
Then in templateB.html im including A like this
<!DOCTYPE html>
<html lang="en">
{% include 'templateA.html' %}
<body>
</body>
</html>
And finally, templateC.html is inheriting from B like this
{% extends 'templateB.html' %}
{% block title %}Template C{% endblock title%}
When I'm invoking now templateC.html the title of the page is "Template A" and not "Template C" as I think it should be.