kopia lustrzana https://github.com/wagtail/wagtail
Release note for #1610
rodzic
c9aa44cc7e
commit
7751a8439a
|
@ -9,6 +9,7 @@ Changelog
|
||||||
* Elasticsearch backend now supports an experimental `ATOMIC_REBUILD` flag to keep the existing index available while the `update_index` task is running
|
* Elasticsearch backend now supports an experimental `ATOMIC_REBUILD` flag to keep the existing index available while the `update_index` task is running
|
||||||
* The wagtailapi module has been refactored to use Django REST Framework (Tom Christie)
|
* The wagtailapi module has been refactored to use Django REST Framework (Tom Christie)
|
||||||
* A number of permissions fixes have been made to the Wagtail admin interface. See release notes for a list of specific changes made.
|
* A number of permissions fixes have been made to the Wagtail admin interface. See release notes for a list of specific changes made.
|
||||||
|
* Snippets that inherit from `wagtail.wagtailsearch.index.Indexed` now appear as searchable within the Wagtail admin
|
||||||
* Implemented pagination in the page chooser modal
|
* Implemented pagination in the page chooser modal
|
||||||
* Changed INSTALLED_APPS in project template to list apps in precedence order (Piet Delport)
|
* Changed INSTALLED_APPS in project template to list apps in precedence order (Piet Delport)
|
||||||
* The `{% image %}` tag now supports filters on the image variable, e.g. `{% image primary_img|default:secondary_img width-500 %}`
|
* The `{% image %}` tag now supports filters on the image variable, e.g. `{% image primary_img|default:secondary_img width-500 %}`
|
||||||
|
|
|
@ -37,6 +37,12 @@ A number of inconsistencies around permissions in the admin interface were fixed
|
||||||
* Permissions for Users now taken from custom user model, if set (previously always used permissions on Djangos builtin User model)
|
* Permissions for Users now taken from custom user model, if set (previously always used permissions on Djangos builtin User model)
|
||||||
* Groups and Users now respond consistently to their respective "add", "change" and "delete" permissions
|
* Groups and Users now respond consistently to their respective "add", "change" and "delete" permissions
|
||||||
|
|
||||||
|
Searchable snippets
|
||||||
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Snippets that inherit from ``wagtail.wagtailsearch.index.Indexed`` are now given a search box on the snippet chooser and listing pages. See :ref:`wagtailsnippets_making_snippets_searchable`.
|
||||||
|
|
||||||
|
|
||||||
Minor features
|
Minor features
|
||||||
~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
|
@ -169,6 +169,7 @@ These child objects are now accessible through the page's ``advert_placements``
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|
||||||
|
.. _wagtailsnippets_making_snippets_searchable:
|
||||||
|
|
||||||
Making Snippets Searchable
|
Making Snippets Searchable
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
Ładowanie…
Reference in New Issue