From 9338fc2ac4ae984437aae6e37a506ad0f4507322 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Wed, 11 May 2016 15:45:42 +0100 Subject: [PATCH] Release note for #1705 --- CHANGELOG.txt | 1 + CONTRIBUTORS.rst | 3 +++ docs/releases/1.5.rst | 10 ++++++++++ 3 files changed, 14 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f8f7c30c90..7a76071d7b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,6 +5,7 @@ Changelog ~~~~~~~~~~~~~~~~ * Added wagtail.contrib.modeladmin, an app for configuring arbitrary Django models to be edited through the Wagtail admin (Andy Babic) + * Added TableBlock, a StreamField block for table-based content (Moritz Pfeiffer, David Seddon, Brad Busenius) * The "dynamic serve view" for images has been greatly improved. See release notes for details * Moved lesser-user actions in the page explorer into a 'More' dropdown * Added a hook `register_page_listing_buttons` for adding action buttons to the page explorer diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index b2bc02079c..7ef2f0f47f 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -131,6 +131,9 @@ Contributors * João Luiz Lorencetti * Jason Morrison * Mario César +* Moritz Pfeiffer +* David Seddon +* Brad Busenius Translators =========== diff --git a/docs/releases/1.5.rst b/docs/releases/1.5.rst index c9912dae6b..5bbe88debc 100644 --- a/docs/releases/1.5.rst +++ b/docs/releases/1.5.rst @@ -16,6 +16,16 @@ ModelAdmin Wagtail now includes an app ``wagtail.contrib.modeladmin`` (previously available separately as the `wagtailmodeladmin `_ package) which allows you to configure arbitrary Django models to be listed, added and edited through the Wagtail admin. See :doc:`/reference/contrib/modeladmin` for full documentation. This feature was developed by Andy Babic. +TableBlock +~~~~~~~~~~ + +``TableBlock``, a new StreamField block type for editing table-based content, is now available through the ``wagtail.contrib.table_block`` module. + +.. image:: ../../_static/images/screen40_table_block.png + +See :doc:`/reference/contrib/table_block` for documentation. This feature was developed by Moritz Pfeiffer, David Seddon and Brad Busenius. + + Improvements to the "Image serve view" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~