pull/9257/head
Matt Westcott 2022-09-27 11:16:53 +01:00
rodzic e2dce25e9a
commit a81f7f76b9
3 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -5,6 +5,7 @@ Changelog
~~~~~~~~~~~~~~~~~~~~
* New scheduled publishing UI, available from the Status side panel (Sage Abdullah)
* Allow snippet admin views to be customised via `SnippetViewSet` (Sage Abdullah)
* Add basic keyboard control and screen reader support for page listing re-ordering (Paarth Agarwal, Thomas van der Hoeven)
* Add `PageQuerySet.private` method as an alias of `not_public` (Mehrdad Moradizadeh)
* Most images in the admin will now only load once they are visible on screen (Jake Howard)

Wyświetl plik

@ -15,6 +15,10 @@ Wagtail 4.1 is designated a Long Term Support (LTS) release. Long Term Support r
Scheduled publishing settings can now be found within the Status side panel of the page editing view. This change aims to improve clarity over who is able to set schedules, and when they take effect. This feature was developed by Sage Abdullah.
### Customisable snippet admin views
The `register_snippet` function now accepts a `SnippetViewSet` class, allowing various aspects of the snippet's admin views to be customised. See [](wagtailsnippets_custom_admin_views). This feature was developed by Sage Abdullah.
### Other features
* Add basic keyboard control and screen reader support for page listing re-ordering (Paarth Agarwal, Thomas van der Hoeven)

Wyświetl plik

@ -388,6 +388,8 @@ class Advert(ClusterableModel):
The [documentation on tagging pages](tagging) has more information on how to use tags in views.
(wagtailsnippets_custom_admin_views)=
## Customising snippets admin views
You can customise the admin views for snippets by specifying a custom subclass of {class}`~wagtail.snippets.views.snippets.SnippetViewSet` to `register_snippet`.