Ticket #16168: 16168.diff

File 16168.diff, 673 bytes (added by Pieter Swinkels, 13 years ago)

changes to the documentation

  • docs/topics/forms/modelforms.txt

     
    435435            class Meta:
    436436                model = Article
    437437
     438    Furthermore, you have to make sure that the contents of the form field can
     439    be used to set the contents of the corresponding model field. When they are
     440    not compatible, you will get a ValueError as no implicit conversion takes
     441    place.
     442
    438443    See the :doc:`form field documentation </ref/forms/fields>` for more information
    439444    on fields and their arguments.
    440445
Back to Top