diff -ruN django.orig/trunk/docs/db-api.txt django/trunk/docs/db-api.txt
old
|
new
|
|
1511 | 1511 | -------------------------- |
1512 | 1512 | |
1513 | 1513 | Both 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 |
| 1514 | end. The API works just as a "backward" one-to-many relationship. See `Backward`_ |
1515 | 1515 | above. |
1516 | 1516 | |
1517 | 1517 | The only difference is in the attribute naming: The model that defines the |
diff -ruN django.orig/trunk/docs/forms.txt django/trunk/docs/forms.txt
old
|
new
|
|
136 | 136 | {% endblock %} |
137 | 137 | |
138 | 138 | Before we get back to the problems with these naive set of views, let's go over |
139 | | some salient points of the above template:: |
| 139 | some salient points of the above template: |
140 | 140 | |
141 | 141 | * Field "widgets" are handled for you: ``{{ form.field }}`` automatically |
142 | 142 | creates the "right" type of widget for the form, as you can see with the |