This may sound a noob question, but I\'m stuck with it as Python is not one of my best languages.
I have a html page with a table inside it, and I would like to show
For me using Jinja's for loop
{% for table in tables %} {{titles[loop.index]}} {{ table|safe }} {% endfor %}
didnt work as it simply printed each character 1 by 1. I simply had to use
{{ table|safe }}