Browse Source

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

pull/20/head
Pēteris Caune 9 years ago
parent
commit
d9d4417b70
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      templates/base.html

+ 1
- 3
templates/base.html 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.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_mobile.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/my_checks_desktop.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"> <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/syntax.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/channels.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"> <link rel="stylesheet" href="{% static 'css/channel_checks.css' %}" type="text/css">
@ -83,7 +81,7 @@
{% endif %} {% endif %}
{% if USE_PAYMENTS %}
{% if USE_PAYMENTS and False %}
<li {% if page == 'pricing' %} class="active" {% endif %}> <li {% if page == 'pricing' %} class="active" {% endif %}>
<a href="{% url 'hc-pricing' %}">Pricing</a> <a href="{% url 'hc-pricing' %}">Pricing</a>
</li> </li>


Loading…
Cancel
Save