def textarea(name, value='', cols=50, rows=10, **attr): """Render a textarea.""" return html.textarea(value, name=name, cols=cols, rows=rows, **attr)