Files
flask-practice/templates/vocabulary.html
2025-02-22 20:16:37 -06:00

20 lines
411 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Japanese Vocabulary</h1>
<table>
<thead>
<tr>
<th>Japanese</th>
<th>English</th>
</tr>
</thead>
<tbody>
{% for japanese, english in vocab_list %}
<tr>
<td>{{ japanese }}</td>
<td>{{ english }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}