What's the easiest way to pass a text that contains spaces from python backend to a view in html?
When I try to pass the following via a returned variable in html in web2py, I only get the first word before the first space.
text = "bla bla"
in html inside an input:
<input value={{=text}} />
result is:
bla
Yes, this issue does not exist if {{=text}} used outside input.