1
0
Fork 0
EnglishPal/app/templates/show.html

9 lines
175 B
HTML

<h1>Here are {{ name }}'s words:</h1>
<table border="2">
<tr>
<th>WORDS</th>
</tr>
{% for word in results %}
<tr><td>{{ word }}</td></tr>
{% endfor %}
</table>