Rendering a value as text instead of field inside a Django Form
- by amdfan
Is there a simple way to make Django render {{myform.name}} as
John Smith
instead of
<input id="id_name" name="name" value="John Smith" />
inside <form> tags? Or am I going about this the wrong way?