netbox/netbox/templates/home.html

82 lines
3.0 KiB
HTML
Raw Normal View History

{% extends 'base/layout.html' %}
2021-04-26 09:31:51 +02:00
{% load helpers %}
{% load render_table from django_tables2 %}
2021-05-01 00:55:37 +02:00
2021-07-15 02:55:01 +02:00
{% block header %}
{% if new_release %}
{# new_release is set only if the current user is a superuser or staff member #}
<div class="header-alert-container">
<div class="alert alert-info text-center mw-md-50" role="alert">
<h6 class="alert-heading">
<i class="mdi mdi-information-outline"></i><br/>New Release Available
</h6>
<small><a href="{{ new_release.url }}">NetBox v{{ new_release.version }}</a> is available.</small>
<hr class="my-2" />
<small class="mb-0">
<a href="https://docs.netbox.dev/en/stable/installation/upgrading/">Upgrade Instructions</a>
2021-07-15 02:55:01 +02:00
</small>
</div>
</div>
{% endif %}
{% endblock %}
{% block title %}Home{% endblock %}
2021-05-01 00:55:37 +02:00
2021-07-22 14:14:17 +02:00
{% block content-wrapper %}
<div class="px-3">
2021-07-22 14:14:17 +02:00
{# General stats #}
<div class="row masonry">
{% for section, items, icon in stats %}
<div class="col col-sm-12 col-lg-6 col-xl-4 my-2 masonry-item">
<div class="card">
<h6 class="card-header text-center">
2021-07-22 14:14:17 +02:00
<i class="mdi mdi-{{ icon }}"></i>
<span class="ms-1">{{ section }}</span>
</h6>
<div class="card-body">
<div class="list-group list-group-flush">
{% for item in items %}
{% if not item.disabled %}
<a href="{% url item.url %}" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between align-items-center">
{{ item.label }}
<h4 class="mb-1">{{ item.count }}</h4>
</div>
</a>
{% else %}
<li class="list-group-item list-group-item-action disabled">
<div class="d-flex w-100 justify-content-between align-items-center">
{{ item.label }}
<h4 class="mb-1">
<i title="No permission" class="mdi mdi-lock"></i>
</h4>
</div>
</li>
{% endif %}
{% endfor %}
</div>
</div>
2021-04-26 05:10:41 +02:00
</div>
</div>
2021-07-22 14:14:17 +02:00
{% endfor %}
</div>
2021-04-26 05:10:41 +02:00
2021-07-22 14:14:17 +02:00
{# Changelog #}
{% if perms.extras.view_objectchange %}
<div class="row my-4 flex-grow-1 changelog-container">
<div class="col">
<div class="card">
<h6 class="card-header text-center">
2021-07-22 14:14:17 +02:00
<i class="mdi mdi-clipboard-clock"></i>
<span class="ms-1">Change Log</span>
</h6>
<div class="card-body table-responsive">
{% render_table changelog_table 'inc/table.html' %}
2021-07-22 14:14:17 +02:00
</div>
</div>
</div>
</div>
2021-07-22 14:14:17 +02:00
{% endif %}
</div>
{% endblock content-wrapper %}