Re: Problems with comment form customization ?

2010-04-13 Thread Ariel
That's the same I do, but if you don't take off the cols property and you set a width size smaller than that amount of cols then the textarea shows an ugly horizontal scroll, that I want to avoid. Could anybody knows how to solve that ??? On Tue, Apr 13, 2010 at 4:13 PM, bax...@gretschpages.com <

Re: Problems with comment form customization ?

2010-04-13 Thread bax...@gretschpages.com
Personally, I just set the width of textareas in my CSS and call it a day. On Apr 13, 2:35 pm, Ariel wrote: > if I want to reduce de amount of columns that the > textarea has, how could I do it ? -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Problems with comment form customization ?

2010-04-13 Thread Ariel
Well that really solve the problem. Now I have a new question: if I want to reduce de amount of columns that the textarea has, how could I do it ? This is not as simple as the previous issue. Thanks in advance. Regards Ariel On Mon, Apr 12, 2010 at 3:58 PM, bax...@gretschpages.com < mail.bax...@gm

Re: Problems with comment form customization ?

2010-04-12 Thread bax...@gretschpages.com
There are several ways you can do it, but probably the most straightforward is how django does it in the first place: {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% if field.errors %}{{ field.errors }}{% endif %}

Problems with comment form customization ?

2010-04-12 Thread Ariel
Hi everybody: I am implementing comments functionalities in my web application, I am making the documentation examples. I have customized my comment form exaxtly like the documentation: {% get_comment_form for document as form %} {{ form }} But the thing is that a field that is su