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-10-07 14:12:16 -04:00
|
|
|
<div class="text-muted text-right">
|
|
|
|
Changelog retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
|
|
|
</div>
|
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 %}
|