We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe1995 commit 6122c80Copy full SHA for 6122c80
CHANGES.txt
@@ -55,6 +55,8 @@ Fixed:
55
- don't wrap query.item.html in a <span> (thanks Roch'e Compaan)
56
- TAL expressions like 'request/show/whatever' return True
57
if the request does not contain explicit @columns list
58
+- NumberHTMLProperty should return '' not "None" if not set (thanks
59
+ William)
60
61
62
2004-10-15 0.7.8
roundup/cgi/templating.py
@@ -1259,6 +1259,9 @@ def plain(self):
1259
'''
1260
self.view_check()
1261
1262
+ if self._value is None:
1263
+ return ''
1264
+
1265
return str(self._value)
1266
1267
def field(self, size = 30):
0 commit comments