Fixed #2267 -- Admin docs now show help text for fields. Thanks, vidar

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3284 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-07-07 04:00:44 +00:00
parent 4b11b43d0b
commit 84dda1990f
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ def model_detail(request, app_label, model_name):
'name': field.name,
'data_type': data_type,
'verbose': verbose,
'help': field.help_text,
'help_text': field.help_text,
})
# Gather model methods.