mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-16 05:19:36 -06:00
12 lines
307 B
HTML
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 %}
|