Files
netbox-community-netbox/netbox/templates/extras/object_changelog.html
T
2019-07-18 21:40:36 -04:00

15 lines
520 B
HTML

{% extends base_template %}
{% block title %}{% if obj %}{{ obj }}{% else %}{{ block.super }}{% endif %} - Changelog{% endblock %}
{% block content %}
{% if obj %}<h1>{{ obj }}</h1>{% endif %}
{% include 'panel_table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{% if settings.CHANGELOG_RETENTION %}
<div class="text-muted">
Changelog retention: {{ settings.CHANGELOG_RETENTION }} days
</div>
{% endif %}
{% endblock %}