Index: django/contrib/databrowse/datastructures.py
===================================================================
--- django/contrib/databrowse/datastructures.py	(revision 6941)
+++ django/contrib/databrowse/datastructures.py	(working copy)
@@ -12,6 +12,7 @@
 from django.db.models.query import QuerySet
 
 EMPTY_VALUE = '(None)'
+STRING_SIZE_LIMIT = 100
 
 class EasyModel(object):
     def __init__(self, site, model):
@@ -93,8 +94,8 @@
 
     def __unicode__(self):
         val = smart_unicode(self.instance)
-        if len(val) > 30:
-            return val[:30] + u'...'
+        if len(val) > STRING_SIZE_LIMIT:
+            return val[:STRING_SIZE_LIMIT] + u'...'
         return val
 
     def __str__(self):
