parent
614b9124ae
commit
b73b534022
3 changed files with 4 additions and 1 deletions
|
@ -205,6 +205,7 @@ def render_page_template(name, route_data=None, **kwargs):
|
||||||
oauth_set=json.dumps(get_oauth_config()),
|
oauth_set=json.dumps(get_oauth_config()),
|
||||||
scope_set=json.dumps(scopes.app_scopes(app.config)),
|
scope_set=json.dumps(scopes.app_scopes(app.config)),
|
||||||
vuln_priority_set=json.dumps(PRIORITY_LEVELS),
|
vuln_priority_set=json.dumps(PRIORITY_LEVELS),
|
||||||
|
enterprise_logo=app.config.get('ENTERPRISE_LOGO_URL', ''),
|
||||||
mixpanel_key=app.config.get('MIXPANEL_KEY', ''),
|
mixpanel_key=app.config.get('MIXPANEL_KEY', ''),
|
||||||
google_tagmanager_key=app.config.get('GOOGLE_TAGMANAGER_KEY', ''),
|
google_tagmanager_key=app.config.get('GOOGLE_TAGMANAGER_KEY', ''),
|
||||||
sentry_public_dsn=app.config.get('SENTRY_PUBLIC_DSN', ''),
|
sentry_public_dsn=app.config.get('SENTRY_PUBLIC_DSN', ''),
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
<p>If the issue persists and is blocking you from getting stuff done, <a href="/contact">contact us</a>.</p>
|
<p>If the issue persists and is blocking you from getting stuff done, <a href="/contact">contact us</a>.</p>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
|
{% if has_billing %}
|
||||||
<div style="margin-top: 20px">
|
<div style="margin-top: 20px">
|
||||||
Current Service Status:
|
Current Service Status:
|
||||||
<span id="status-elem">(Loading)</span>
|
<span id="status-elem">(Loading)</span>
|
||||||
|
@ -23,4 +24,5 @@
|
||||||
renderTo: '#status-elem'
|
renderTo: '#status-elem'
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
<div class="water layer"></div>
|
<div class="water layer"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="information">
|
<div class="information">
|
||||||
<img src="/static/img/Quay_horizontal_color.svg" style="max-height: 50px;">
|
<img src="{{ enterprise_logo or '/static/img/Quay_horizontal_color.svg' }}" style="max-height: 50px;">
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Reference in a new issue