“Como fazer mesa dinâmica em Jinja Python” Respostas de código

Como fazer mesa dinâmica em Jinja Python

<table style="width:100%", border="1">
        {% for item in Description %}    
        <tr>               
            <td>{{Description[loop.index0 ]}}</td>
            <td>{{Location[loop.index0]}}</td>
            <td>{{Status[loop.index0]}}</td>                            
        </tr>
        {% endfor %}    
</table>
Adam Kurek

Como fazer mesa dinâmica em Jinja Python

{% for item in my_list %}    
        <tr>               
            <td>{{ item.description }}</td>
            <td>{{ item.location }}</td>
            <td>{{ item.status }}</td>                            
        </tr>
    {% endfor %}
Adam Kurek

Respostas semelhantes a “Como fazer mesa dinâmica em Jinja Python”

Perguntas semelhantes a “Como fazer mesa dinâmica em Jinja Python”

Mais respostas relacionadas para “Como fazer mesa dinâmica em Jinja Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código