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

12 lines
391 B
HTML
Raw Normal View History

2020-11-11 16:58:29 -05:00
{% extends 'generic/object_list.html' %}
{% load i18n %}
2018-06-20 13:52:54 -04:00
{% block title %}{% trans "Change Log" %}{% endblock %}
{% block content-wrapper %}
{{ block.super }}
<div class="text-muted px-3">
{% trans "Change log retention" %}: {% if config.CHANGELOG_RETENTION %}{{ config.CHANGELOG_RETENTION }} {% trans "days" %}{% else %}{% trans "Indefinite" %}{% endif %}
</div>
2018-06-20 13:52:54 -04:00
{% endblock %}