Spaces:
Runtime error
Runtime error
| <table border="1"> | |
| <thead> | |
| <tr> | |
| {% for col in columns %} | |
| <th>{{ col }}</th> | |
| {% endfor %} | |
| </tr> | |
| </thead> | |
| <tbody> | |
| {% for row in data %} | |
| <tr> | |
| {% for col in columns %} | |
| <td>{{ row[col] }}</td> | |
| {% endfor %} | |
| </tr> | |
| {% endfor %} | |
| </tbody> | |
| </table> | |