From 3f5586e1f8a30301bb4013eaccd3e1800d6f74c8 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 12 Feb 2016 11:22:46 +0000 Subject: [PATCH] Changelog/release note for #2219 --- CHANGELOG.txt | 1 + docs/releases/1.4.rst | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 698ba4cfa8..261cc7e932 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,6 +5,7 @@ Changelog ~~~~~~~~~~~~~~~~ * The page editor now produces a warning if the user navigates away without saving changes + * The set of pages displayed in the page explorer can now be customised with a new hook called `construct_explorer_page_queryset` * The `Document` model can now be overridden using the new `WAGTAILDOCS_DOCUMENT_MODEL` setting (Alex Gleason) * Wagtail no longer depends on django-compressor * Snippets now support a custom `edit_handler` property (Mikalai Radchuk) diff --git a/docs/releases/1.4.rst b/docs/releases/1.4.rst index dd9279f1b3..a29535e2b7 100644 --- a/docs/releases/1.4.rst +++ b/docs/releases/1.4.rst @@ -16,6 +16,12 @@ Protection against unsaved changes The page editor interface now produces a warning if the user attempts to navigate away while there are unsaved changes. +Customisation of the page listing QuerySet +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The pages shown in the explorer can now be customised using a new hook called :ref:`construct_explorer_page_queryset `. + + Custom document models ~~~~~~~~~~~~~~~~~~~~~~