1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<table id="results"> <thead> <tr> {% for field_name in field_names %} <th>{{ field_name }}</th> {% endfor %} </tr> </thead> <tbody> {% for row in rows %} <tr> {% for field in row %} <td>{{ field }}</td> {% endfor %} </tr> {% endfor %} </tbody> </table>