objectchange_list.html 614 B

12345678910111213141516171819202122
  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. {% if settings.CHANGELOG_RETENTION %}
  12. <div class="pull-right text-muted">
  13. Changelog retention: {{ settings.CHANGELOG_RETENTION }} days
  14. </div>
  15. {% endif %}
  16. </div>
  17. <div class="col-md-3 noprint">
  18. {% include 'inc/search_panel.html' %}
  19. </div>
  20. </div>
  21. {% endblock %}