emoji-flask-app/templates/result.html
2022-06-12 00:32:21 -04:00

20 lines
No EOL
348 B
HTML

<!doctype html>
<html>
<head>
<title>Emoji Count - Results</title>
</head>
<body>
<table>
<tr>
<th>Emoji</th>
<th>Count</th>
</tr>
{% for emoji, count in emoji_summary_messages['emoji_counts'] %}
<tr>
<th> {{ emoji }}</th>
<td> {{ count }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>