Working on names

svn: r18382
This commit is contained in:
Doug Blank
2011-10-29 13:58:41 +00:00
parent c76da10e9d
commit 4109dbf95e
2 changed files with 6 additions and 3 deletions

View File

@@ -522,7 +522,10 @@ def render(formfield, user, action, test=False, truetext=""):
if action == "view":
if (not user.is_authenticated() and not test) or user.is_authenticated():
fieldname = formfield.name # 'surname'
retval = str(getattr(formfield.form.model, fieldname))
try:
retval = str(getattr(formfield.form.model, fieldname))
except:
retval = "???" # formfield._data()
else:
retval = truetext
else: