diff --git a/README.md b/README.md index 38a9b87..74d12ff 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ In Wagtail, using Kontrasto is much simpler: - The result of dominant color extraction is cached, greatly improving performance. - The above methods are directly available as template tags. -At least for now, this does mean using Kontrasto requires adding a field to a [custom image model](https://docs.wagtail.io/en/stable/advanced_topics/images/custom_image_model.html): +At least for now, this does mean using Kontrasto requires adding a field to a [custom image model](https://docs.wagtail.org/en/stable/advanced_topics/images/custom_image_model.html): ```python from wagtail.images.models import ( diff --git a/demo/home/models.py b/demo/home/models.py index e1e8a23..1528220 100644 --- a/demo/home/models.py +++ b/demo/home/models.py @@ -15,7 +15,7 @@ from modelcluster.fields import ParentalKey -# https://docs.wagtail.io/en/stable/advanced_topics/images/custom_image_model.html +# https://docs.wagtail.org/en/stable/advanced_topics/images/custom_image_model.html class CustomImage(AbstractImage):