Django-compressor and template inheritance
问题 I'm using the django-compressor app in Django 1.2.3 to minify and merge a number of included CSS and JS files. In a base template, I have {% load compress %} {% compress js %} {% block js %} <script type="text/javascript" src="/site_media/js/jquery.query-2.1.7.js"> {% endblock %} and in a child, {% block js %} {{block.super}} <script type="text/javascript" src="/site_media/js/jquery.validate.min.js"> {% endblock %} When the templates render, the first script tag is correctly minified, but the