One of the field in my model is defined
Description=meta.TextField()
When I use
{{form.Description}}
in my input form( template)
the field is not as large as I would need.
When I check HTML I can see
<textarea id="id_Description" class="vLargeTextField required"
name="Description" rows="10" cols="40"></textarea>
But I would need at least rows="20" cols="70".
Is there a way how to change the size from Django directly and not by
editing HTML code?
Thank you
L.B.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---