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

14 lines
383 B
HTML
Raw Normal View History

2017-10-11 14:47:43 -04:00
{% extends 'rest_framework/base.html' %}
2021-07-29 15:02:52 -04:00
{% load static %}
{% block head %}
{{ block.super }}
<link rel="icon" type="image/png" href="{% static 'rest-api.ico' %}" />
{% endblock head %}
2017-10-11 14:47:43 -04:00
2021-07-29 15:06:09 -04:00
{% block title %}{% if name %}{{ name }} | {% endif %}NetBox REST API{% endblock %}
2017-10-11 14:47:43 -04:00
{% block branding %}
<a class="navbar-brand" href="{% url 'home' %}">NetBox</a>
2021-07-29 15:02:52 -04:00
{% endblock branding %}