From 78f900f0aeac607097acd4b2bdd29384fbac8f15 Mon Sep 17 00:00:00 2001 From: acrewdson Date: Fri, 9 Jun 2017 17:13:58 -0400 Subject: [PATCH] Add note to docs re situation where data isn't being saved when the widget is in an inline --- docs/quickstart.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 75e99cd8..c9a97f41 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -79,6 +79,8 @@ Admin Integration Adding the cropduster widget to the django admin requires no extra work. Simply ensure that the field is included in the ``ModelAdmin`` class. +If you are using the cropduster widget inside a Django admin inline and find that cropduster data is not being round-tripped correctly on save, you may need to convert the relevant `ModelAdmin` and the related inline to use `django-nested-admin `_. + Template usage ..............