I'm new to Django and I have a question about this part of extending a component from the base.html. Let's say I want to use% extends in another html page, it doesn't load for me Look enter image description here
this is my directory project
In my base.html on container I have this:
{% block content %}
{% endblock content %}
And in next page, home.html
I have this
{% extends 'base.html' %}
{% block content %}
html code
{% endblock content %}
I uploaded to use templates / base.html but the same result I do not receive errors or etc. What other information would you need?