Version initiale fonctionnelle

This commit is contained in:
François Pelletier 2022-06-12 00:32:21 -04:00
parent b9877d1550
commit 4293be9208
9 changed files with 103 additions and 89 deletions

20
templates/result.html Normal file
View file

@ -0,0 +1,20 @@
<!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>