Skip to content Skip to sidebar Skip to footer

Html Table With Contenteditable In Python

I would like to create a HTML table with contenteditable fields from python. I am using python + flask. I have the data ready as a dictionary and needs to create a dynamic page and

Solution 1:

You need to use a Jinja2 template. You write a template file which includes python code inserts (see here for the docs), and then render the template as the return value to a request method using the flask method. So you end your request method with return render_template(args...).


Post a Comment for "Html Table With Contenteditable In Python"