diff options
| author | Timo Graham <timograham@gmail.com> | 2011-02-22 00:57:28 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2011-02-22 00:57:28 +0000 |
| commit | 00fb22d83600a1e3ca162257a46e4a2a5004ef2b (patch) | |
| tree | 5ddde76ecbb3477a74c9c00ee12d29ede078ae60 /docs | |
| parent | e57e29616772fe628333fd71b3f4cf7c2c17eff8 (diff) | |
Fixed #15257 - Add a link about field lookups to the tutorial; thanks dwillis.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15624 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/intro/tutorial01.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index b6cbebfc36..29a2cb73fc 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -686,8 +686,11 @@ Save these changes and start a new Python interactive shell by running >>> c.delete() For more information on model relations, see :doc:`Accessing related objects -</ref/models/relations>`. For full details on the database API, see our -:doc:`Database API reference </topics/db/queries>`. +</ref/models/relations>`. For more on how to use double underscores to perform +field lookups via the API, see `Field lookups`__. For full details on the +database API, see our :doc:`Database API reference </topics/db/queries>`. + +__ http://docs.djangoproject.com/en/1.2/topics/db/queries/#field-lookups When you're comfortable with the API, read :doc:`part 2 of this tutorial </intro/tutorial02>` to get Django's automatic admin working. |
