Commit 659f9821 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

[django-1.0.X] Fixed #9507 -- Correct an example in the admin docs. Thanks,

john_scott and SmileyChris.

Backport of r9432 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9433 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 539d947a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ You have four possible values that can be used in ``list_display``:
      example::
    
          def upper_case_name(obj):
              return "%s %s" % (obj.first_name, obj.last_name).upper()
              return ("%s %s" % (obj.first_name, obj.last_name)).upper()
          upper_case_name.short_description = 'Name'
        
          class PersonAdmin(admin.ModelAdmin):
@@ -275,7 +275,7 @@ You have four possible values that can be used in ``list_display``:
              list_display = ('upper_case_name',)
              
              def upper_case_name(self, obj):
                return "%s %s" % (obj.first_name, obj.last_name).upper()
                return ("%s %s" % (obj.first_name, obj.last_name)).upper()
              upper_case_name.short_description = 'Name'
    
    * A string representing an attribute on the model. This behaves almost