I am trying to make my stylesheets dynamic with django (jinja2) and I want to do something like this:
<link rel="stylesheet" href="{% static 'home/css/{{ block css }}{{ endblock }}.css' %}">
Apparently, I can't use Jinja in Jinja :), and I don't know how to make this work another way.