tangentlabs / django-fancypages

A Content Enhancement System for Django
https://django-fancypages.readthedocs.org
BSD 3-Clause "New" or "Revised" License
34 stars 11 forks source link

Django Compressor blocks in extrascripts and extrahead #3

Closed a-musing-moose closed 11 years ago

a-musing-moose commented 11 years ago

Since django compressor is in setup.py does it make sense to add compress blocks to extrascripts and extrahead?

roadsideseb commented 11 years ago

Even though both blocks are not wrapped in compression blocks, they are still compressed. The compress is picked up from the parent container that included this. django-compressor doesn't work with inheritance but it does work with {% include %} tags. Hence, the compress blocks are not required here. Does that make sense?