python - Why isn't my django templating working? -
i've got django templating i'm doing won't render block. block looks like:
{% block compose %} {% load static %} <some html></some html> {% endblock %}
and have block being called in base.html so:
<div id="fixedcomp"> {% block compose %}{% endblock %} </div>
if can tell me why isn't rendering appreciated. in advance.
Comments
Post a Comment