I have two django template pages, one of them is \"base.html\", with basic html tags setup as a base template. Now I have a page \"child.html\" that extends it, with something l
To do this add a block in base.html in the head that allow you to inset another css AFTER the one in base.html
.... other head tags ....
{% block extra_css %}{% endblock %}
This allows you to override css tags in template_conf.css
by adding in another tag in child.html
{% block extra_css %}
{% endblock %}
This allows you to override the partd of base.html that needs to change, while still being able to tweak the parts of the page in child.html that are required.