I have an pre-built HTML form (means I design the HTML form separately) and I need to reuse it with Django form class (django.forms), So how do I incorporate my HTML form with Django form class. for example
HTML: <li id="foli11" class=""> <label class="desc" id="title11" for="Field11"> Username <span id="req_0" class="req">*</span> </label> <div class="col"> <input id="Field11" name="Field11" type="text" class="field text medium" value="" maxlength="255" tabindex="11" /> </div> </li> How do I map this HTML in to Django form definition, I know that it can be done by modifying Django form fields according to this HTML. But I guess it's a time consuming approach,so I would like to know that is there any easy and time saving solutions for this issue. Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

