Kaydet (Commit) 7a132e27 authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Fixed #1285 -- Fixed bug in docs/db-api.txt. Thanks, adrianob@gmail.com

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2228 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 2549b319
......@@ -294,7 +294,7 @@ Given an instance of an object, related objects can be looked-up directly using
convenience functions. For example, if ``p`` is a ``Poll`` instance,
``p.get_choice_list()`` will return a list of all associated choices. Astute
readers will note that this is the same as
``choices.get_list(poll_id__exact=p.id)``, except clearer.
``choices.get_list(poll__id__exact=p.id)``, except clearer.
Each type of relationship creates a set of methods on each object in the
relationship. These methods are created in both directions, so objects that are
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment