2018-06-20 13:52:54 -04:00
|
|
|
{% extends '_base.html' %}
|
|
|
|
{% load buttons %}
|
|
|
|
|
|
|
|
{% block content %}
|
2019-03-05 15:42:47 -06:00
|
|
|
<div class="pull-right noprint">
|
2018-06-20 13:52:54 -04:00
|
|
|
{% export_button content_type %}
|
|
|
|
</div>
|
|
|
|
<h1>{% block title %}Changelog{% endblock %}</h1>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
|
|
|
{% include 'utilities/obj_table.html' %}
|
2019-06-20 14:05:53 -04:00
|
|
|
{% if settings.CHANGELOG_RETENTION %}
|
|
|
|
<div class="pull-right text-muted">
|
2019-07-23 13:46:55 -05:00
|
|
|
Changelog retention: {% if settings.CHANGELOG_RETENTION == 0 %}Indefinite{% else %}{{ settings.CHANGELOG_RETENTION }} days{% endif %}
|
2019-06-20 14:05:53 -04:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-06-20 13:52:54 -04:00
|
|
|
</div>
|
2019-03-05 15:42:47 -06:00
|
|
|
<div class="col-md-3 noprint">
|
2018-06-20 13:52:54 -04:00
|
|
|
{% include 'inc/search_panel.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|