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 ac0731e commit 9b7708cCopy full SHA for 9b7708c
CHANGES.txt
@@ -16,6 +16,8 @@ Fixed:
16
- don't wrap query.item.html in a <span> (thanks Roch'e Compaan)
17
- TAL expressions like 'request/show/whatever' return True
18
if the request does not contain explicit @columns list
19
+- NumberHTMLProperty should return '' not "None" if not set (thanks
20
+ William)
21
22
23
2004-10-15 0.7.8
roundup/cgi/templating.py
@@ -1210,6 +1210,9 @@ def plain(self):
1210
'''
1211
self.view_check()
1212
1213
+ if self._value is None:
1214
+ return ''
1215
+
1216
return str(self._value)
1217
1218
def field(self, size=30):
0 commit comments