Version initiale fonctionnelle
This commit is contained in:
parent
b9877d1550
commit
4293be9208
9 changed files with 103 additions and 89 deletions
20
templates/result.html
Normal file
20
templates/result.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue