'manage.py compress' doesn't look at local_settings.py so this conditional doesn't work.

This commit is contained in:
Pēteris Caune 2015-12-08 00:01:10 +02:00
parent 263f50058e
commit d9d4417b70

View File

@ -20,9 +20,7 @@
<link rel="stylesheet" href="{% static 'css/my_checks.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/my_checks_mobile.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/my_checks_desktop.css' %}" type="text/css">
{% if USE_PAYMENTS %}
<link rel="stylesheet" href="{% static 'css/pricing.css' %}" type="text/css">
{% endif %}
<link rel="stylesheet" href="{% static 'css/syntax.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/channels.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/channel_checks.css' %}" type="text/css">
@ -83,7 +81,7 @@
{% endif %}
{% if USE_PAYMENTS %}
{% if USE_PAYMENTS and False %}
<li {% if page == 'pricing' %} class="active" {% endif %}>
<a href="{% url 'hc-pricing' %}">Pricing</a>
</li>