diff --git a/templates/layout.html b/templates/layout.html index 7e0065c..e7607a9 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -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 %} diff --git a/templates/livechat_default.html b/templates/livechat_default.html new file mode 100644 index 0000000..008bae4 --- /dev/null +++ b/templates/livechat_default.html @@ -0,0 +1,7 @@ +{% load i18n %} +
+ + + {% blocktrans %}Any question? Chat with us{% endblocktrans %} + +
\ No newline at end of file