objectchange_list.html 604 B

1234567891011121314151617181920
  1. {% extends '_base.html' %}
  2. {% load buttons %}
  3. {% block content %}
  4. <div class="pull-right noprint">
  5. {% export_button content_type %}
  6. </div>
  7. <h1>{% block title %}Changelog{% endblock %}</h1>
  8. <div class="row">
  9. <div class="col-md-9">
  10. {% include 'utilities/obj_table.html' %}
  11. <div class="text-muted text-right">
  12. Changelog retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
  13. </div>
  14. </div>
  15. <div class="col-md-3 noprint">
  16. {% include 'inc/search_panel.html' %}
  17. </div>
  18. </div>
  19. {% endblock %}