From b3e723eea3a7aed670fb9dc6530efe146d2a2715 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Fri, 3 Feb 2017 21:23:55 +0000 Subject: [PATCH] Release note for #3305 --- CHANGELOG.txt | 1 + docs/getting_started/tutorial.rst | 2 ++ docs/releases/1.9.rst | 6 ++++++ 3 files changed, 9 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4fef9b52d8..d3d71657e1 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,6 +4,7 @@ Changelog 1.9 (xx.xx.xxxx) - IN DEVELOPMENT ~~~~~~~~~~~~~~~~ + * Added support for many-to-many relations on page models (Thejaswi Puthraya, Matt Westcott) * Form builder form submissions can now be bulk-deleted (Karl Hobley) * `get_context` methods on StreamField blocks can now access variables from the parent context (Mikael Svensson, Peter Baumgartner) * Updated admin dashboard welcome message for multi-tenanted installations (Jeffrey Chau) diff --git a/docs/getting_started/tutorial.rst b/docs/getting_started/tutorial.rst index 025826b2c1..4bb9f611c1 100644 --- a/docs/getting_started/tutorial.rst +++ b/docs/getting_started/tutorial.rst @@ -708,6 +708,8 @@ something like this: :alt: A simple tag view +.. _tutorial_categories: + Categories ~~~~~~~~~~ diff --git a/docs/releases/1.9.rst b/docs/releases/1.9.rst index 6f6d34af96..0c2e9ee49c 100644 --- a/docs/releases/1.9.rst +++ b/docs/releases/1.9.rst @@ -10,6 +10,12 @@ Wagtail 1.9 release notes - IN DEVELOPMENT What's new ========== +Many-to-many relations on page models +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Wagtail now supports a new field type ``ParentalManyToManyField`` that can be used to set up many-to-many relations on pages. For details, see the :ref:`tutorial_categories` section of the tutorial. This feature was developed by Thejaswi Puthraya and Matt Westcott. + + Bulk-deletion of form submissions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~