mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
11 lines
319 B
HTML
11 lines
319 B
HTML
{% extends 'generic/object_list.html' %}
|
|
|
|
{% block title %}Change Log{% endblock %}
|
|
|
|
{% block content-wrapper %}
|
|
{{ block.super }}
|
|
<div class="text-muted px-3">
|
|
Change log retention: {% if config.CHANGELOG_RETENTION %}{{ config.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
|
</div>
|
|
{% endblock %}
|