I have this code in a Django Template:
input type="text" name="ppoisNomePOI" value={{ request.session.ppoisNomePOI }}
If my "request.session.ppoisNomePOI" is "John" then in the page it appears "John" in the input, but if my "request.session.ppoisNomePOI" is "John Flanders Simpson" it only appears "John"
I assume it was a problem with the spaces in the value.