We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f90220 commit 1704a5cCopy full SHA for 1704a5c
api/templates/admin/base.html
@@ -4,6 +4,11 @@
4
<head>
5
<title>{% block title %}{% endblock %}</title>
6
<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" />
7
+ {% if GO_ENVIRONMENT != 'production' %}
8
+ <link rel="icon" type="image/svg+xml" href="{% static 'images/logo/go-admin-staging.svg' %}">
9
+ {% else %}
10
+ <link rel="icon" type="image/svg+xml" href="{% static 'images/logo/go-admin-prod.svg' %}">
11
+ {% endif %}
12
{% block dark-mode-vars %}
13
<link rel="stylesheet" href="{% static "admin/css/dark_mode.css" %}">
14
<script src="{% static "admin/js/theme.js" %}" defer></script>
go-static/images/logo/go-admin-prod.svg
go-static/images/logo/go-admin-staging.svg
0 commit comments