@ -10,5 +10,6 @@ def some_settings(request):
'CLIENT_ON_VPN': is_vpn_gateway(client_ip),
'ROOT_URL': settings.ROOT_URL,
'ADDITIONAL_HTML': settings.ADDITIONAL_HTML,
'SUPPORT_HTML': settings.SUPPORT_HTML,
'ADDITIONAL_HEADER_HTML': settings.ADDITIONAL_HEADER_HTML,
}
@ -173,6 +173,9 @@ ADDITIONAL_HEADER_HTML = ''
# HTML added before </body>
ADDITIONAL_HTML = ''
# Will replace the default contact us thing when not empty
SUPPORT_HTML = ''
# Custom per cluster message displayed config page
# 'cluster_name': "No P2P"
LAMBDAINST_CLUSTER_MESSAGES = {}
@ -94,16 +94,22 @@
</p>
</footer>
{{ADDITIONAL_HTML | safe}}
{% block livechat_thing %}
{% if not request.user.is_staff %}
{% if SUPPORT_HTML %}
{{SUPPORT_HTML | safe}}
{% else %}
<div class="livechat-thing">
<a href="/chat">
<span class="icon"></span>
{% blocktrans %}Any question? <b>Chat with us</b>{% endblocktrans %}
</a>
</div>
{% endif %}
{% endblock %}
</body>
</html>