Add "cols" parameter to the textarea macro
authorunkind <unk91nd@gmail.com>
Tue, 17 Sep 2013 07:34:02 +0000 (11:34 +0400)
committerunkind <unk91nd@gmail.com>
Tue, 17 Sep 2013 07:34:02 +0000 (11:34 +0400)
Macro textarea depends on cols variable, but there is no way to pass it.

doc/tags/import.rst

index f6bf718..21a1e19 100644 (file)
@@ -15,7 +15,7 @@ Imagine we have a helper module that renders forms (called ``forms.html``):
         <input type="{{ type|default('text') }}" name="{{ name }}" value="{{ value|e }}" size="{{ size|default(20) }}" />
     {% endmacro %}
 
-    {% macro textarea(name, value, rows) %}
+    {% macro textarea(name, value, rows, cols) %}
         <textarea name="{{ name }}" rows="{{ rows|default(10) }}" cols="{{ cols|default(40) }}">{{ value|e }}</textarea>
     {% endmacro %}