From 19a23fe562b4b2d051612d2850834c60177c4063 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 26 Apr 2017 09:45:33 -0400 Subject: [PATCH] Fixed #28074 -- Doc'd template-based widget rendering changes for contrib.gis. --- docs/releases/1.11.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/releases/1.11.txt b/docs/releases/1.11.txt index 023b55240e..94998d5095 100644 --- a/docs/releases/1.11.txt +++ b/docs/releases/1.11.txt @@ -464,6 +464,13 @@ Backwards incompatible changes in 1.11 * Support for GDAL 1.7 and 1.8 is dropped. +* The widgets in ``contrib.gis.forms.widgets`` and the admin's + ``OpenLayersWidget`` use the :doc:`form rendering API ` + rather than ``loader.render_to_string()``. If you're using a custom widget + template, you'll need to be sure your form renderer can locate it. For + example, you could use the :class:`~django.forms.renderers.TemplatesSetting` + renderer. + :mod:`django.contrib.staticfiles` ---------------------------------