mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 13:39:27 -02:30
Merge pull request #9369 from jbradberry/fix-broken-logos
Fix the broken paths to the favicon and logo in the API browser Reviewed-by: Jake McDermott <yo@jakemcdermott.me> https://github.com/jakemcdermott
This commit is contained in:
@@ -18,7 +18,7 @@ div.response-info span.meta {
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<a class="navbar-brand" href="/">
|
<a class="navbar-brand" href="/">
|
||||||
<img class="logo" src="{% static 'assets/logo-header.svg' %}">
|
<img class="logo" src="{% static 'media/logo-header.svg' %}">
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-title" href="{{ request.get_full_path }}">
|
<a class="navbar-title" href="{{ request.get_full_path }}">
|
||||||
<span> — {{name}}</span>
|
<span> — {{name}}</span>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block style %}
|
{% block style %}
|
||||||
<link href="{% static 'assets/favicon.ico' %}?v={{tower_version}}" rel="shortcut icon" />
|
<link href="{% static 'favicon.ico' %}?v={{tower_version}}" rel="shortcut icon" />
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
</button>
|
||||||
<a class="navbar-brand" href="{% url 'api:api_root_view' %}">
|
<a class="navbar-brand" href="{% url 'api:api_root_view' %}">
|
||||||
<img class="logo" src="{% static 'assets/logo-header.svg' %}">
|
<img class="logo" src="{% static 'media/logo-header.svg' %}">
|
||||||
<span>{% trans 'REST API' %}</span>
|
<span>{% trans 'REST API' %}</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-title" href="{{ request.get_full_path }}">
|
<a class="navbar-title" href="{{ request.get_full_path }}">
|
||||||
|
|||||||
Reference in New Issue
Block a user