Hi,
If I understood correctly you want to render form with plain HTML. That is completely possible and it's not even hard.
You just can do <input type="text" name="some_field_name"> and it will work
Only important thing is to match "some_field_name" with field name in the django form. You still should Django form in a view to do very important thing that it's actually meant for - to validate and coerce user input in correct form. Also you might want to render field and form errors (forms do provide simple accessors for them) from the form itself. As well as initial/current values so you don't show empty form everytime for user for example when your form fails to validate.