I have a form:
class simple_order(Form):
order_info = TextAreaField()
,in the template i am added:
{{form.order_info(cols=60, rows=20)}}
How to add text into render textarea, like value in the input tag?
I have a form:
class simple_order(Form):
order_info = TextAreaField()
,in the template i am added:
{{form.order_info(cols=60, rows=20)}}
How to add text into render textarea, like value in the input tag?