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.

22 lines
565 B

{% extends "layout.html" %}
5 years ago
{% block content %}
5 years ago
<div class="diverge_all">
<p>{{ searchterm }} : </p>
{% for word in wordlist_dict %}
{% if searchterm == word %}
{% set length_d = wordlist_dict[word]|length %}
5 years ago
<div class="diverge_list">
{% for item in wordlist_dict[word] %}
{% set address = "/description?id=" + item['id'] %}
5 years ago
<span class="folder-corner"></span><a href={{address}} class="diverge">
{{ item['sentence'] }}
</a><br/><br/><br/>
{% endfor %}
5 years ago
</div>
{% endif %}
{% endfor %}
5 years ago
</div>
5 years ago
{% endblock %}