1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
2021-03-13 02:19:42 -07:00

60 lines
1.5 KiB
HTML

<div
class="d-flex flex-column container-fluid mt-auto justify-content-end sidebar-bottom"
>
<div class="d-flex flex-column align-items-center px-2 fw-light">
<small class="text-muted">{% now 'Y-m-d H:i:s T' %}</small>
</div>
<div class="d-flex flex-column align-items-center px-2">
<small class="text-muted">
{{ settings.HOSTNAME }} (v{{ settings.VERSION }})
</small>
</div>
<nav class="nav justify-content-between mb-2 mt-4 px-2">
<a
type="button"
target="_blank"
class="nav-link"
href="https://netbox.readthedocs.io/"
>
<i
title="Docs"
class="bi-book text-primary"
data-bs-placement="top"
data-bs-toggle="tooltip"
></i>
</a>
<a class="nav-link" href="{% url 'api_docs' %}" target="_blank">
<i
title="API"
data-bs-placement="top"
data-bs-toggle="tooltip"
class="bi-braces text-primary"
></i>
</a>
<a
class="nav-link"
href="https://github.com/netbox-community/netbox"
target="_blank"
>
<i
title="Source Code"
data-bs-placement="top"
data-bs-toggle="tooltip"
class="bi-code-slash text-primary"
></i>
</a>
<a
target="_blank"
class="nav-link"
href="https://github.com/netbox-community/netbox/wiki"
>
<i
title="Get Help"
data-bs-placement="top"
data-bs-toggle="tooltip"
class="bi-life-preserver text-primary"
></i>
</a>
</nav>
</div>