<div class="footerLinks" >
<a href="{% url about %}">{% trans "about" %}</a><span class="link-separator"> |</span>
<a href="{% url faq %}">{% trans "faq" %}</a><span class="link-separator"> |</span>
- <a href="{% url privacy %}">{% trans "privacy policy" %}</a><span class="link-separator"> |</span>
+ <a href="{% url privacy %}">{% trans "privacy" %}</a><span class="link-separator"> |</span>
+ {% if settings.SUPPORT_URL %}
+ <a href="{{settings.SUPPORT_URL}}" target="_blank">{% trans "support" %}</a><span class="link-separator"> |</span>
+ {% endif %}
{% spaceless %}
<a href=
- {% if settings.FEEDBACK_SITE_URL %}
- "{{settings.FEEDBACK_SITE_URL}}"
+ {% if settings.CONTACT_URL %}
+ "{{settings.CONTACT_URL}}"
target="_blank">
{% else %}
"{% url feedback %}?next={{request.path}}">
{% endif %}
- {% trans "give feedback" %}
+ {% trans "contact us" %}
</a>
{% endspaceless %}
</div>
</a>
</div>
</div>
- {% if settings.GOOGLE_ANALYTICS_KEY %}
- <script type="text/javascript">
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
- </script>
- <script type="text/javascript">
- try {
- var pageTracker = _gat._getTracker('{{ settings.GOOGLE_ANALYTICS_KEY }}');
- pageTracker._trackPageview();
- } catch(err) {}
- </script>
- {% endif %}