diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-11-04 15:05:49 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-11-04 15:05:49 +0000 |
| commit | 77abadfa6a2bd015308602c70cecbfabedd3f08e (patch) | |
| tree | 1ba6ed6b4164291c09544f07e85d6718aeb479b3 /docs | |
| parent | 2c609b40199f75c52ae915ad07cf36f72a8f1f6c (diff) | |
Corrected a markup error in the m2m inline docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11723 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 3dd7856267..0f746bf01b 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -1070,7 +1070,7 @@ Suppose we have the following models:: members = models.ManyToManyField(Person, related_name='groups') If you want to display many-to-many relations using an inline, you can do -so by defining an ``InlineModelAdmin`` object for the relationship. +so by defining an ``InlineModelAdmin`` object for the relationship:: class MembershipInline(admin.TabularInline): model = Group.members.through |
