{% load sekizai_tags %}
{% for f in css_sources %}
{% addtoblock "css" %}
{% if f.1 == 'src' %}
{% endif %}
{% if f.1 == 'inline' %}
{% autoescape off %}
{% endautoescape %}
{% endif %}
{% endaddtoblock %}
{% endfor %}
{% for f in js_sources %}
{% addtoblock "js" %}
{% if f.1 == 'src' %}
{% endif %}
{% if f.1 == 'inline' %}
{% autoescape off %}
{% endautoescape %}
{% endif %}
{% endaddtoblock %}
{% endfor %}
{% autoescape off %}
{{ html_content }}
{% endautoescape %}