diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9373c3224f..313d93f0ca 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -51,6 +51,7 @@ Changelog * Support chunking in `PageQuerySet.specific()` to reduce memory consumption (Andy Babic) * Implement new tabs design across the admin interface (Steven Steinwand) * Move page meta information from the header to a new status side panel component inside of the page editing UI (Steven Steinwand, Karl Hobley) + * Add useful help text to Tag fields to advise what content is allowed inside tags, including when `TAG_SPACES_ALLOWED` is `True` or `False` (Abdulmajeed Isa) * Fix: When using `simple_translations` ensure that the user is redirected to the page edit view when submitting for a single locale (Mitchel Cabuloy) * Fix: When previewing unsaved changes to `Form` pages, ensure that all added fields are correctly shown in the preview (Joshua Munn) * Fix: When Documents (e.g. PDFs) have been configured to be served inline via `WAGTAILDOCS_CONTENT_TYPES` & `WAGTAILDOCS_INLINE_CONTENT_TYPES` ensure that the filename is correctly set in the `Content-Disposition` header so that saving the files will use the correct filename (John-Scott Atlakson) diff --git a/docs/releases/3.0.md b/docs/releases/3.0.md index f17bf2e680..0ba56b676e 100644 --- a/docs/releases/3.0.md +++ b/docs/releases/3.0.md @@ -80,6 +80,7 @@ class LandingPage(Page): * Add the ability for choices to be separated by new lines instead of just commas within the form builder, commas will still be supported if used (Abdulmajeed Isa) * Add internationalisation UI to modeladmin (Andrés Martano) * Support chunking in `PageQuerySet.specific()` to reduce memory consumption (Andy Babic) + * Add useful help text to Tag fields to advise what content is allowed inside tags, including when `TAG_SPACES_ALLOWED` is `True` or `False` (Abdulmajeed Isa) * Fix: Implement ARIA tabs markup and keyboards interactions for admin tabs (Steven Steinwand) ### Bug fixes diff --git a/wagtail/admin/templates/wagtailadmin/widgets/tag_widget.html b/wagtail/admin/templates/wagtailadmin/widgets/tag_widget.html index 0abd5138ca..8be4998f91 100644 --- a/wagtail/admin/templates/wagtailadmin/widgets/tag_widget.html +++ b/wagtail/admin/templates/wagtailadmin/widgets/tag_widget.html @@ -1,4 +1,5 @@ {% include 'django/forms/widgets/text.html' %} +
{{ widget.help_text }}