You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cjvt-valency/dip_src/flask_app/templates/words.html

12 lines
298 B

<ul>
{% for w in words %}
<li>
<a href="javascript:get_frames('{{ w[0] }}')">{{ w[0] + " (" + w[1]|string + ")" }}
{# Star indicates sense data has been preprocessed. #}
{% if w[2] %}
{{ "*" }}
{% endif %}
</a>
</li>
{% endfor %}
</ul>