diff --git a/CHANGELOG.txt b/CHANGELOG.txt index eb3d0e6ab6..71ecd6b3d3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -26,6 +26,7 @@ Changelog * Fix: Handle non-JSON-safe fields in `exclude_fields_in_copy` (Matt Westcott) * Fix: Allow upload of AVIF images through image chooser on Firefox (Matt Westcott) * Fix: Accept any string beginning with 'y' as confirmation for `import_redirects` command (Matt Westcott) + * Docs: Add missing tag library imports to footer template code in tutorial (Dimaco) * Maintenance: Refactor `get_embed` to remove `finder` argument which was only used for mocking in unit tests (Jigyasu Rajput) * Maintenance: Simplify handling of `None` values in `TypedTableBlock` (Jigyasu Rajput) * Maintenance: Remove squash.io configuration (Sage Abdullah) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0c98805f52..e8ee9e1f5a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -890,6 +890,7 @@ * Vishesh Garg * Paul Craciunoiu * Richard Allen +* Dimaco ## Translators diff --git a/docs/releases/7.1.md b/docs/releases/7.1.md index d84871dcd5..56153c5c67 100644 --- a/docs/releases/7.1.md +++ b/docs/releases/7.1.md @@ -41,7 +41,7 @@ depth: 1 ### Documentation - * ... + * Add missing tag library imports to footer template code in tutorial (Dimaco) ### Maintenance diff --git a/docs/tutorial/create_footer_for_all_pages.md b/docs/tutorial/create_footer_for_all_pages.md index f8255bc115..cc5f84e22c 100644 --- a/docs/tutorial/create_footer_for_all_pages.md +++ b/docs/tutorial/create_footer_for_all_pages.md @@ -122,6 +122,8 @@ Create an `includes` folder in your `mysite/templates` folder. Then in your newl Now, go to your `mysite/templates/base.html` file and modify it as follows: ``` +{% load static %} +{% load wagtailuserbar %} {% wagtailuserbar %}