Files
flask-practice/app/templates/vocabulary.html
2025-09-18 16:59:30 -05: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 %}