I am trying to do the following
{% block csslinks %}
<link rel="stylesheet" type="text/css" href="{% static 'hello/style.css' %}">
{% endblock %}
I know it is impossible, but what are the alternatives? The was a similar question at Django : Is it impossible to static tag into block tag?
I was suggested there to {% load staticfiles %}
didn`t answer what to write here?
{% block csslinks %}
<link rel="stylesheet" type="text/css" href="what to write here to include css?">
{% endblock %}