On Jul 7, 9:48 am, Alexander  Solovyov <[EMAIL PROTECTED]>
wrote:
> But my colleguaes, who are responsible
> for HTML part, doesn't like django-generated forms - they want full
> control.

Yeah.  Coworkers are a drag. ;-)

You do know that you can place the fields yourself, right?

If your form instance is called 'form' and has fields lastname and
firstname, you can put something like:

<table>
<tr class='polkadot'>
<td>{{ form.lastname }},</td><td>{{ form.firstname }}</td>
</tr>
</table>

in your template and have full control over the way the form looks.

You don't have to accept the default arrangement that Django gives by
default.

HTH,
Steve


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to