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

19 lines
609 B
HTML
Raw Normal View History

2018-06-20 13:52:54 -04:00
{% extends base_template %}
{% load render_table from django_tables2 %}
2018-06-20 13:52:54 -04:00
{% 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>
2018-06-20 13:52:54 -04:00
{% endblock %}