diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index 3f744e6221..b9d24034d4 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -411,8 +411,9 @@ working with ``ModelForm`` instances instead of ``Form`` instances:: .. note:: - One thing to note is that ``modelformset_factory`` uses ``formset_factory`` - and by default uses ``can_delete=True``. + ``modelformset_factory`` uses ``formset_factory`` to generate the forms + making model formsets simply an abstraction on top of formsets that knows + about models and how to interact. Changing the queryset --------------------- @@ -559,6 +560,10 @@ some author you would do:: >>> author = Author.objects.get(name=u'Orson Scott Card') >>> formset = BookFormSet(instance=author) +.. note:: + ``inlineformset_factory`` uses ``modelformset_factory`` and marks + ``can_delete=True``. + More than one foreign key to the same model ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~