diff --git a/CHANGELOG.txt b/CHANGELOG.txt index dd1a3053fa..1cbead79ac 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -29,6 +29,7 @@ Changelog * Docs: Document `WAGTAILADMIN_BASE_URL` on "Integrating Wagtail into a Django project" page (Shreshth Srivastava) * Docs: Replace incorrect screenshot for authors listing on tutorial (Shreshth Srivastava) * Docs: Add documentation for building non-model-based choosers using the _queryish_ library (Matt Westcott) + * Docs: Fix incorrect tag library import on focal points example (Hatim Makki Hoho) * Maintenance: Fix snippet search test to work on non-fallback database backends (Matt Westcott) * Maintenance: Update Eslint, Prettier, Jest, a11y-dialog, axe-core and js-cookie npm packages (LB (Ben) Johnston) * Maintenance: Add npm scripts for TypeScript checks and formatting SCSS files (LB (Ben) Johnston) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 918c81046d..7c118f1158 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -727,6 +727,7 @@ * Sandeep Choudhary * Antoni Martyniuk * Gareth Palmer +* Hatim Makki Hoho ## Translators diff --git a/docs/advanced_topics/images/focal_points.md b/docs/advanced_topics/images/focal_points.md index 5fda356138..d57c3452d5 100644 --- a/docs/advanced_topics/images/focal_points.md +++ b/docs/advanced_topics/images/focal_points.md @@ -24,9 +24,9 @@ attribute on the rendition to position the rendition based on the focal point in You can access the focal point in the template by accessing the `.focal_point` attribute of a rendition: ```html+django -{% load wagtailimages %} +{% load wagtailimages_tags %} -{% image myimage width-800 as myrendition %} +{% image page.image width-800 as myrendition %}