[Answer]-Django template language not working

1👍

Template inheritance includes the parent template in the child, not the other way around.

Render child.html and you’ll see your content surrounded by the base.html (parent) markup.

Also, you need to quote the parent template name:

{% extends "base.html" %}
{% block content %}
    Content!
{% endblock %}
👤stderr

Leave a comment