2018-06-20 13:52:54 -04:00
|
|
|
{% extends base_template %}
|
2021-07-12 15:36:51 -04:00
|
|
|
{% load render_table from django_tables2 %}
|
2018-06-20 13:52:54 -04:00
|
|
|
|
|
|
|
{% block content %}
|
2021-12-15 10:34:20 -05:00
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col col-md-12">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body table-responsive">
|
|
|
|
{% render_table table 'inc/table.html' %}
|
|
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="text-muted">
|
2022-02-03 09:48:21 -05:00
|
|
|
Change log retention: {% if config.CHANGELOG_RETENTION %}{{ config.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
2021-12-15 10:34:20 -05:00
|
|
|
</div>
|
2019-10-07 14:12:16 -04:00
|
|
|
</div>
|
2021-12-15 10:34:20 -05:00
|
|
|
</div>
|
2018-06-20 13:52:54 -04:00
|
|
|
{% endblock %}
|