Hide django-compressor comment section

If you choose to not use `django-compressor`, it will still leave a comment section for that library.
This should hide it if you don't choose that option.
This commit is contained in:
Daniel Gopar 2016-07-31 12:37:09 -07:00 committed by GitHub
parent 91aabe10d9
commit 084402a210

View File

@ -238,9 +238,9 @@ else:
########## END CELERY
{% endif %}
{% if cookiecutter.use_compressor == 'y'-%}
# django-compressor
# ------------------------------------------------------------------------------
{% if cookiecutter.use_compressor == 'y'-%}
INSTALLED_APPS += ("compressor", )
STATICFILES_FINDERS += ("compressor.finders.CompressorFinder", )
{%- endif %}