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

Closes #3264: Annotate changelog retention time on UI

This commit is contained in:
Jeremy Stretch
2019-06-20 14:05:53 -04:00
parent 1c54d7ed55
commit dfcd2c247d
3 changed files with 11 additions and 0 deletions

View File

@ -177,6 +177,7 @@ scheme. This change was introuced in django-cors-headers 3.0.
* [#2920](https://github.com/digitalocean/netbox/issues/2920) - Rename Interface `form_factor` to `type` (backward-compatible until v2.7)
* [#2926](https://github.com/digitalocean/netbox/issues/2926) - Add change logging to the Tag model
* [#3038](https://github.com/digitalocean/netbox/issues/3038) - OR logic now used when multiple values of a query filter are passed
* [#3264](https://github.com/digitalocean/netbox/issues/3264) - Annotate changelog retention time on UI
## Bug Fixes

View File

@ -5,4 +5,9 @@
{% block content %}
{% if obj %}<h1>{{ obj }}</h1>{% endif %}
{% include 'panel_table.html' with table=objectchanges_table %}
{% if settings.CHANGELOG_RETENTION %}
<div class="pull-right text-muted">
Changelog retention: {{ settings.CHANGELOG_RETENTION }} days
</div>
{% endif %}
{% endblock %}

View File

@ -9,6 +9,11 @@
<div class="row">
<div class="col-md-9">
{% include 'utilities/obj_table.html' %}
{% if settings.CHANGELOG_RETENTION %}
<div class="pull-right text-muted">
Changelog retention: {{ settings.CHANGELOG_RETENTION }} days
</div>
{% endif %}
</div>
<div class="col-md-3 noprint">
{% include 'inc/search_panel.html' %}