summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-05-16 08:37:20 -0400
committerTim Graham <timograham@gmail.com>2013-05-16 08:37:20 -0400
commit79715f267c7b301dc246b35182ede3e269a15aa2 (patch)
tree172dac425b00e1945cbc784e77a60a3f950f8329
parentb5b63079bd758c4492ab6b6935edec3346016f25 (diff)
Fixed misleading heading on admindocs models page; refs #19712.
-rw-r--r--django/contrib/admindocs/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admindocs/views.py b/django/contrib/admindocs/views.py
index 6b1bea15f3..348727eb21 100644
--- a/django/contrib/admindocs/views.py
+++ b/django/contrib/admindocs/views.py
@@ -267,7 +267,7 @@ def model_detail(request, app_label, model_name):
return render_to_response('admin_doc/model_detail.html', {
'root_path': urlresolvers.reverse('admin:index'),
'name': '%s.%s' % (opts.app_label, opts.object_name),
- 'summary': _("Fields on %s objects") % opts.object_name,
+ 'summary': _("Attributes on %s objects") % opts.object_name,
'description': model.__doc__,
'fields': fields,
}, context_instance=RequestContext(request))