How does django display the default value in a textfield to form.
<input type="text" name="{{ form.username}}" value="{{ costumer.username}}"><p>
it shows a textfield follow by costumer.username in browser, I want to have the username as default value in the textfield, How can i do that?