[Answer]-Django, how to display data with space in input box?

1👍

Try putting quotes around {{ user.first_name }}

<td><input disabled type="text" name="fname" style="width:235px;" value="{{ user.first_name }}"> </td>

For more info: see here

Leave a comment