Changeset 5802
- Timestamp:
- 08/04/07 23:42:26 (1 year ago)
- Files:
-
- django/trunk/docs/db-api.txt (modified) (1 diff)
- django/trunk/docs/model-api.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/db-api.txt
r5798 r5802 1835 1835 For a full example, see the `lookup API sample model`_. 1836 1836 1837 .. _lookup API sample model: http://www.djangoproject.com/documentation/models/lookup/1837 .. _lookup API sample model: ../models/lookup/ 1838 1838 1839 1839 get_FOO_filename() django/trunk/docs/model-api.txt
r5796 r5802 23 23 24 24 .. _Database API reference: ../db-api/ 25 .. _official repository of model examples: http://www.djangoproject.com/documentation/models/25 .. _official repository of model examples: ../models/ 26 26 27 27 Quick example … … 776 776 See the `Many-to-one relationship model example`_ for a full example. 777 777 778 .. _Many-to-one relationship model example: http://www.djangoproject.com/documentation/models/many_to_one/778 .. _Many-to-one relationship model example: ../models/many_to_one/ 779 779 780 780 ``ForeignKey`` fields take a number of extra arguments for defining how the … … 903 903 See the `Many-to-many relationship model example`_ for a full example. 904 904 905 .. _Many-to-many relationship model example: http://www.djangoproject.com/documentation/models/many_to_many/905 .. _Many-to-many relationship model example: ../models/many_to_many/ 906 906 907 907 ``ManyToManyField`` objects take a number of extra arguments for defining how … … 980 980 See the `One-to-one relationship model example`_ for a full example. 981 981 982 .. _One-to-one relationship model example: http://www.djangoproject.com/documentation/models/one_to_one/982 .. _One-to-one relationship model example: ../models/one_to_one/ 983 983 984 984 Custom field types … … 1187 1187 site uses only the first field. 1188 1188 1189 .. _Specifying ordering: http://www.djangoproject.com/documentation/models/ordering/1189 .. _Specifying ordering: ../models/ordering/ 1190 1190 1191 1191 ``permissions``
