2021-05-17 16:27:27 -04:00
{# Base layout for the core NetBox UI w/navbar and page content #}
{% extends 'base/base.html' %}
2021-07-06 12:10:29 -04:00
{% load helpers %}
2024-01-17 16:25:42 -05:00
{% load navigation %}
2021-05-17 16:27:27 -04:00
{% load static %}
2023-07-29 03:30:25 +07:00
{% load i18n %}
2021-05-17 16:27:27 -04:00
2022-02-08 11:45:23 -05:00
{% comment %}
Blocks:
header: Page header
tabs: Horizontal navigation tabs
content: Page content
modals: Bootstrap 5 modal components
{% endcomment %}
2021-05-17 16:27:27 -04:00
{% block layout %}
2021-07-29 17:33:10 -07:00
2024-01-17 16:25:42 -05:00
< div class = "page" >
2021-06-22 17:20:17 -07:00
2024-01-17 16:25:42 -05:00
{# Sidebar #}
< aside class = "navbar navbar-vertical navbar-expand-lg" data-bs-theme = "dark" >
< div class = "container-fluid" >
2024-04-16 10:45:39 -04:00
{# Menu toggle (mobile view) #}
2024-01-17 16:25:42 -05:00
< button class = "navbar-toggler" type = "button" data-bs-toggle = "collapse" data-bs-target = "#sidebar-menu" aria-controls = "sidebar-menu" aria-expanded = "false" aria-label = "Toggle navigation" >
< span class = "navbar-toggler-icon" > < / span >
< / button >
2024-04-16 10:45:39 -04:00
{# Logo #}
2024-01-17 16:25:42 -05:00
< h1 class = "navbar-brand navbar-brand-autodark" >
< a href = "{% url 'home' %}" >
2024-04-16 10:45:39 -04:00
< img src = "{% static 'netbox_logo.svg' %}" alt = "{% trans " NetBox Logo " % } " class = "navbar-brand-image" >
2024-01-17 16:25:42 -05:00
< / a >
< / h1 >
2024-04-16 10:45:39 -04:00
{# User menu (mobile view) #}
< div class = "navbar-nav flex-row d-lg-none" >
{% include 'inc/user_menu.html' %}
< / div >
2024-01-17 16:25:42 -05:00
{# Navigation menu #}
< div class = "collapse navbar-collapse" id = "sidebar-menu" >
{% nav %}
< / div >
2021-06-22 17:20:17 -07:00
2024-01-17 16:25:42 -05:00
< / div >
< / aside >
{# Top menu #}
< header class = "navbar navbar-expand-md d-none d-lg-flex d-print-none" >
2024-03-20 08:26:04 -04:00
< div class = "container-fluid" >
2024-01-17 16:25:42 -05:00
< div class = "navbar-nav flex-row align-items-center order-md-last" >
{# Dark/light mode toggle #}
< div class = "d-none d-md-flex" >
< button class = "btn color-mode-toggle hide-theme-dark" title = "{% trans " Enable dark mode " % } " data-bs-toggle = "tooltip" data-bs-placement = "bottom" >
< i class = "mdi mdi-lightbulb" > < / i >
< / button >
< button class = "btn color-mode-toggle hide-theme-light" title = "{% trans " Enable light mode " % } " data-bs-toggle = "tooltip" data-bs-placement = "bottom" >
< i class = "mdi mdi-lightbulb-on" > < / i >
< / button >
< / div >
2024-03-28 11:51:38 -04:00
2024-01-17 16:25:42 -05:00
{# User menu #}
2024-04-16 10:45:39 -04:00
{% include 'inc/user_menu.html' %}
2021-08-18 16:17:50 -07:00
< / div >
2024-01-17 16:25:42 -05:00
{# Search box #}
< div class = "collapse navbar-collapse" id = "navbar-menu" >
< form action = "{% url 'search' %}" method = "get" autocomplete = "off" novalidate >
< div class = "input-icon" >
< span class = "input-icon-addon" >
< i class = "mdi mdi-magnify" > < / i >
< / span >
< input type = "text" name = "q" value = "" class = "form-control" placeholder = "Search…" aria-label = "Search NetBox" >
2021-06-22 17:20:17 -07:00
< / div >
2024-01-17 16:25:42 -05:00
< / form >
< / div >
2021-07-10 21:30:55 -04:00
2024-01-17 16:25:42 -05:00
< / div >
< / header >
2021-05-17 16:27:27 -04:00
2024-01-17 16:25:42 -05:00
{# Page content #}
< div class = "page-wrapper" >
2024-03-28 11:51:38 -04:00
< div id = "page-content" { % htmx_boost % } >
2021-07-29 17:33:10 -07:00
2024-01-17 16:25:42 -05:00
{# Page header #}
{% block header %}
2021-05-17 16:27:27 -04:00
2024-01-17 16:25:42 -05:00
{# Top banner #}
2021-10-25 14:42:20 -04:00
{% if config.BANNER_TOP %}
2024-01-17 16:25:42 -05:00
{% include 'inc/banner.html' with content=config.BANNER_TOP %}
2021-07-20 11:05:19 -04:00
{% endif %}
2024-01-17 16:25:42 -05:00
{# /Top banner #}
2021-07-20 11:05:19 -04:00
2024-01-17 16:25:42 -05:00
{# Alerts #}
2023-04-10 09:12:04 -04:00
{% if settings.DEBUG and not settings.DEVELOPER %}
2024-01-17 16:25:42 -05:00
{% include 'inc/alerts/warning.html' with title="Debug mode is enabled" message="Performance may be limited. Debugging should never be enabled on a production system." %}
2023-04-10 09:12:04 -04:00
{% endif %}
2023-05-12 19:24:59 +05:30
{% if config.MAINTENANCE_MODE and config.BANNER_MAINTENANCE %}
2024-01-17 16:25:42 -05:00
{% include 'inc/alerts/warning.html' with title="Maintenance Mode" message=config.BANNER_MAINTENANCE|escape %}
2021-07-20 11:05:19 -04:00
{% endif %}
2024-01-17 16:25:42 -05:00
{# /Alerts #}
2021-07-20 11:05:19 -04:00
2024-01-17 16:25:42 -05:00
{% endblock header %}
{# /Page header #}
2021-05-17 16:27:27 -04:00
2024-01-17 16:25:42 -05:00
{# Page body #}
{% block page %}
< div class = "page-body my-1" >
2024-03-20 08:26:04 -04:00
< div class = "container-fluid tab-content py-3" >
2021-05-17 16:27:27 -04:00
2024-01-17 16:25:42 -05:00
{# Page content #}
{% block content %}{% endblock %}
{# /Page content #}
2021-05-17 16:27:27 -04:00
2021-06-22 17:20:17 -07:00
< / div >
< / div >
2024-01-17 16:25:42 -05:00
{% endblock page %}
{# /Page body #}
{# Bottom banner #}
{% if config.BANNER_BOTTOM %}
{% include 'inc/banner.html' with content=config.BANNER_BOTTOM %}
{% endif %}
{# /Bottom banner #}
2024-04-22 14:08:27 -04:00
{# BS5 pop-up modals #}
{% block modals %}{% endblock %}
2024-03-28 11:51:38 -04:00
< / div >
2024-01-17 16:25:42 -05:00
{# Page footer #}
< footer class = "footer footer-transparent d-print-none py-2" >
2024-03-20 08:26:04 -04:00
< div class = "container-fluid d-flex justify-content-between align-items-center" >
2022-02-26 01:13:11 -03:00
{% block footer %}
2022-03-07 10:55:30 -05:00
2024-01-17 16:25:42 -05:00
{# Footer links #}
< ul class = "list-inline mb-0 fs-2" >
{% block footer_links %}
{# Documentation #}
< li class = "list-inline-item" >
< a href = "{% static 'docs/' %}" target = "_blank" class = "link-secondary" rel = "noopener" >
< i title = "{% trans " Docs " % } " class = "mdi mdi-book-open-variant text-primary" data-bs-placement = "top" data-bs-toggle = "tooltip" > < / i >
< / a >
< / li >
{# REST API #}
< li class = "list-inline-item" >
< a href = "{% url 'api-root' %}" target = "_blank" class = "link-secondary" rel = "noopener" >
< i title = "{% trans " REST API " % } " class = "mdi mdi-cloud-braces text-primary" data-bs-placement = "top" data-bs-toggle = "tooltip" > < / i >
< / a >
< / li >
{# API docs #}
< li class = "list-inline-item" >
< a href = "{% url 'api_docs' %}" target = "_blank" class = "link-secondary" rel = "noopener" >
< i title = "{% trans " REST API documentation " % } " class = "mdi mdi-book text-primary" data-bs-placement = "top" data-bs-toggle = "tooltip" > < / i >
< / a >
< / li >
{# GraphQL API #}
{% if config.GRAPHQL_ENABLED %}
< li class = "list-inline-item" >
< a href = "{% url 'graphql' %}" target = "_blank" class = "link-secondary" rel = "noopener" >
2023-07-29 03:30:25 +07:00
< i title = "{% trans " GraphQL API " % } " class = "mdi mdi-graphql text-primary" data-bs-placement = "top" data-bs-toggle = "tooltip" > < / i >
2022-02-26 01:13:11 -03:00
< / a >
2024-01-17 16:25:42 -05:00
< / li >
{% endif %}
{# GitHub #}
< li class = "list-inline-item" >
< a href = "https://github.com/netbox-community/netbox" target = "_blank" class = "link-secondary" rel = "noopener" >
< i title = "{% trans " Source Code " % } " class = "mdi mdi-github text-primary" data-bs-placement = "top" data-bs-toggle = "tooltip" > < / i >
< / a >
< / li >
{# NetDev Slack #}
< li class = "list-inline-item" >
< a href = "https://netdev.chat" target = "_blank" class = "link-secondary" rel = "noopener" >
< i title = "{% trans " Community " % } " class = "mdi mdi-slack text-primary" data-bs-placement = "top" data-bs-toggle = "tooltip" > < / i >
< / a >
< / li >
{% endblock footer_links %}
< / ul >
{# /Footer links #}
{# Footer text #}
2024-04-17 12:14:21 -04:00
< ul class = "list-inline list-inline-dots fs-5 mb-0" id = "footer-stamp" hx-swap-oob = "true" >
2024-01-17 16:25:42 -05:00
< li class = "list-inline-item" >
2024-04-17 12:14:21 -04:00
{% now 'Y-m-d H:i:s T' %}
2024-01-17 16:25:42 -05:00
< / li >
< li class = "list-inline-item" >
{{ settings.HOSTNAME }} (v{{ settings.VERSION }})
< / li >
< / ul >
{# /Footer text #}
2021-08-18 16:17:50 -07:00
2022-02-26 01:13:11 -03:00
{% endblock footer %}
2024-01-17 16:25:42 -05:00
< / div >
< / footer >
{# /Page footer #}
2021-05-17 16:27:27 -04:00
2024-01-17 16:25:42 -05:00
{# /Page content #}
< / div >
2021-05-17 16:27:27 -04:00
< / div >
{% endblock layout %}