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.
19 lines
427 B
19 lines
427 B
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
<p>{{ searchterm }} : </p>
|
|
{% 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'] %}
|
|
<a href={{address}}>
|
|
{{ item['sentence'] }}
|
|
</a><br>
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|