From a9048c40edffd189e9b99699c5947e69f9ca15f1 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 16 May 2013 05:55:21 -0400 Subject: [PATCH] [1.5.x] Fixed #19712 - Clarified admindocs regarding which attributes appear. Thanks Daniele Procida for the report. Backport of b5b63079bd from master --- docs/ref/contrib/admin/admindocs.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/ref/contrib/admin/admindocs.txt b/docs/ref/contrib/admin/admindocs.txt index b3e26eca487..394d078e5bd 100644 --- a/docs/ref/contrib/admin/admindocs.txt +++ b/docs/ref/contrib/admin/admindocs.txt @@ -57,9 +57,10 @@ Model reference =============== The **models** section of the ``admindocs`` page describes each model in the -system along with all the fields and methods available on it. Relationships to -other models appear as hyperlinks. Descriptions are pulled from ``help_text`` -attributes on fields or from docstrings on model methods. +system along with all the fields and methods (without any arguments) available +on it. While model properties don't have any arguments, they are not listed. +Relationships to other models appear as hyperlinks. Descriptions are pulled +from ``help_text`` attributes on fields or from docstrings on model methods. A model with useful documentation might look like this::