From a62fc528429b2d9d69b7580c216b4921740b2f78 Mon Sep 17 00:00:00 2001 From: "Schinckel, Matthew" Date: Fri, 21 Jun 2024 13:49:18 +0930 Subject: [PATCH] Reference settings.FORM_RENDERER in docs. --- README.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.rst b/README.rst index 7ce3fd4..9c1887f 100644 --- a/README.rst +++ b/README.rst @@ -72,6 +72,14 @@ your settings file: }, ] +Form template coverage only works when you use the +:code:`django.forms.renderers.TemplatesSetting` renderer, in addition to the +setting above: + +.. code-block:: python + + FORM_RENDERER = 'django.forms.renderes.TemplatesSetting' + Configuration ~~~~~~~~~~~~~