mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
609 B
HTML
19 lines
609 B
HTML
{% extends base_template %}
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
<div class="card">
|
|
<div class="card-body table-responsive">
|
|
{% render_table table 'inc/table.html' %}
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
|
</div>
|
|
</div>
|
|
<div class="text-muted">
|
|
Change log retention: {% if config.CHANGELOG_RETENTION %}{{ config.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|