Sentences that have {{ searchterm }} in common :
{% for word in wordlist_dict %}
{% if searchterm == word %}
{% set length_d = wordlist_dict[word]|length %}
{% for item in wordlist_dict[word] %}
{% set address = "/description?id=" + item['id'] %}
{{ item['sentence'] }}
└ from {{ item['id'] }} — {{index_dict[ item['id'] ]}}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}