Browse Source

the same but less broken

master
Alice 3 years ago
parent
commit
ee123a455b
2 changed files with 8 additions and 1 deletions
  1. +1
    -1
      templates/layout.html
  2. +7
    -0
      templates/livechat_default.html

+ 1
- 1
templates/layout.html View File

@@ -99,7 +99,7 @@
{% block livechat_thing %}
{% if not request.user.is_staff %}
{% if SUPPORT_TEMPLATE %}
{% include SUPPORT_TEMPLATE %}
{% include SUPPORT_TEMPLATE with request=request %}
{% endif %}
{% endif %}
{% endblock %}


+ 7
- 0
templates/livechat_default.html View File

@@ -0,0 +1,7 @@
{% load i18n %}
<div class="livechat-thing">
<a href="/chat">
<span class="icon"></span>
{% blocktrans %}Any question? <b>Chat with us</b>{% endblocktrans %}
</a>
</div>

Loading…
Cancel
Save