mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
12 lines
428 B
HTML
12 lines
428 B
HTML
{% extends base_template %}
|
|
|
|
{% block title %}{{ block.super }} - Change Log{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'panel_table.html' %}
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
|
<div class="text-muted">
|
|
Change log retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
|
</div>
|
|
{% endblock %}
|