netbox/netbox/templates/rest_framework/api.html
2021-07-29 15:02:52 -04:00

12 lines
307 B
HTML

{% 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 branding %}