Hi!
In my django app I'm using modelForms and not simple django forms so in order to render the form I just do {{ form.as_table }} an the template and everything is being displayed.
That's simple, but obviously any html code is being skipped, so I wonder how will I further customize my form (css stuff etc)+(I'd like to use twitter bootstrap)
Is there any way? I also want to upload a file, but how am I going to add the required header <form method="post" action='./'{% if form.is_multipart %} enctype='multipart/form-data'{% endif %}> since my form is being automatically rendered only by {{ form.as_table }}? It confuses me.. can anyone help?
Thanks in advance