Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +3 -3
templates/index.html
CHANGED
@@ -87,10 +87,10 @@
|
|
87 |
</tr>
|
88 |
</thead>
|
89 |
<tbody>
|
90 |
-
{% for
|
91 |
<tr>
|
92 |
-
<th scope="row">{{
|
93 |
-
<td>{{
|
94 |
</tr>
|
95 |
{% endfor %}
|
96 |
</tbody>
|
|
|
87 |
</tr>
|
88 |
</thead>
|
89 |
<tbody>
|
90 |
+
{% for ranking in rankings %}
|
91 |
<tr>
|
92 |
+
<th scope="row">{{ ranking['word'] }}</th>
|
93 |
+
<td>{{ ranking['freq'] }}</td>
|
94 |
</tr>
|
95 |
{% endfor %}
|
96 |
</tbody>
|