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 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/tags/import.rst b/doc/tags/import.rst index f6bf718..21a1e19 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 %} -- 1.7.2.5