Chris
> I have a field in my model like so:
> about = models.TextField(blank=True)
try blank=True,null=True
--
regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/code/
There may be some tricky stuff not being handled by the view here,
which warrants some testing and possibly a bug report.
The docs are correct in that you shouldn't set null=True on a
text-based field; the corollary to this is that when there's no value
for that field, you must insert an empty string. If you try this in
Python code you'll see the difference: trying it with "about=''" will
work, but "about=None", or leaving that field out entirely, won't.
--
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."