Fix use of old JS compression tag in login template

Instead of `compressed_js` in the `compress` library, we now use
`minified_js` from the `minified_js` library. (CSS is not affected by
the change.)

(imported from commit 07aea9efbc83d30b354a7e044070563e93f7525a)
This commit is contained in:
Scott Feeney 2013-07-12 13:26:54 -04:00
parent e5b855d883
commit 27f120e01f
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
{# Login page. #}
{% load compressed %}
{% load minified_js %}
{% block customhead %}
{{ block.super }}
{% compressed_js 'signup' %}
{% minified_js 'signup' %}
{% endblock %}
{% block portico_content %}