9 lines
175 B
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>
|