emoji-flask-app/templates/result.html

20 lines
348 B
HTML
Raw Normal View History

2022-06-12 04:32:21 +00:00
<!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>