I've got a weird problem in django admin list_display. Whenever I add a foreign key to a list_display the whole change list view goes blank showing only the total no of entries.
models.py:
class Organization(models.Model):
    org_id = models.AutoField(primary_key=True)
    org_name = models.CharField(max_length=288)
    def __unicode__(self):
        return self.org_name
    class Meta:
        db_table = u'organization'
class Server(models.Model):
    server_id = models.AutoField(primary_key=True)
    server_name = models.CharField(max_length=135,verbose_name="Server Name")
    org = models.ForeignKey(Organization,verbose_name="Organization")   
    def __unicode__(self):
        return self.server_name
    class Meta:
        db_table = u'server'
admin.py:
class ServerAdmin(admin.ModelAdmin):
    list_display = ('server_name','org') 
admin.site.register(Server,ServerAdmin) 
Now I'd expect this code to show me the organization name in the ChangeList View, But instead I get this: 

If I remove the org in the list_display of ServerAdmin class, I get this:

I didn't modify the template or override any ModelAdmin methods. I'm using Mysql(5.1.58) as my database that comes with ubuntu 11.10 repository.
I'll be really glad if I could a get a sloution for this problem guys. Thanks in advance.
 
     
     
     
     
    