Ticket #2769: little-doc-fixes.diff

File little-doc-fixes.diff, 1.2 KB (added by Ramiro Morales, 18 years ago)
  • trunk/docs/db-api.txt

    diff -ruN django.orig/trunk/docs/db-api.txt django/trunk/docs/db-api.txt
    old new  
    15111511--------------------------
    15121512
    15131513Both ends of a many-to-many relationship get automatic API access to the other
    1514 end. The API works just as a "backward" one-to-many relationship. See _Backward
     1514end. The API works just as a "backward" one-to-many relationship. See `Backward`_
    15151515above.
    15161516
    15171517The only difference is in the attribute naming: The model that defines the
  • trunk/docs/forms.txt

    diff -ruN django.orig/trunk/docs/forms.txt django/trunk/docs/forms.txt
    old new  
    136136    {% endblock %}
    137137
    138138Before we get back to the problems with these naive set of views, let's go over
    139 some salient points of the above template::
     139some salient points of the above template:
    140140
    141141    * Field "widgets" are handled for you: ``{{ form.field }}`` automatically
    142142      creates the "right" type of widget for the form, as you can see with the
Back to Top