Ticket #17950: 17950.diff

File 17950.diff, 809 bytes (added by Stephen Muss, 12 years ago)

patch with documentation changes.

  • docs/ref/forms/fields.txt

    diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
    index fa58006..bebfb67 100644
    a b objects (in the case of ``ModelMultipleChoiceField``) into the  
    934934    * Validates that the given id exists in the queryset.
    935935    * Error message keys: ``required``, ``invalid_choice``
    936936
    937     Allows the selection of a single model object, suitable for
    938     representing a foreign key.  A single argument is required:
     937    Allows the selection of a single model object, suitable for representing
     938    a foreign key. Note that ``ModelChoiceField`` should not be used for more
     939    than 1000 entries and becomes increasingly difficult to use beyond 100 entries.
     940
     941    A single argument is required:
    939942
    940943    .. attribute:: queryset
    941944
Back to Top