1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#6834: Add favicon to REST API web UI

This commit is contained in:
jeremystretch
2021-07-29 15:02:52 -04:00
parent 81e1b7490e
commit 689f67b1a8
3 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
{% extends 'rest_framework/base.html' %}
{% load static %}
{% block head %}
{{ block.super }}
<link rel="icon" type="image/png" href="{% static 'rest-api.ico' %}" />
{% endblock head %}
{% block branding %}
<a class="navbar-brand" href="/{{ settings.BASE_PATH }}">NetBox</a>
{% endblock %}
<a class="navbar-brand" href="/{{ settings.BASE_PATH }}">NetBox</a>
{% endblock branding %}