From c735d6de7abe43ea6459918b832764a57cc8172c Mon Sep 17 00:00:00 2001 From: unkind Date: Tue, 17 Sep 2013 11:34:02 +0400 Subject: [PATCH] Add "cols" parameter to the textarea macro Macro textarea depends on cols variable, but there is no way to pass it. --- doc/tags/import.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tags/import.rst b/doc/tags/import.rst index f6bf718e4..21a1e1980 100644 --- a/doc/tags/import.rst +++ b/doc/tags/import.rst @@ -15,7 +15,7 @@ Imagine we have a helper module that renders forms (called ``forms.html``): {% endmacro %} - {% macro textarea(name, value, rows) %} + {% macro textarea(name, value, rows, cols) %} {% endmacro %}