2019-04-16 16:05:27 +02:00
|
|
|
{% extends "layout.html" %}
|
2019-04-16 17:03:28 +02:00
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<p>test</p>
|
2019-04-16 18:53:21 +02:00
|
|
|
<p>{{ searchterm }}</p>
|
|
|
|
{% for word in wordlist_dict %}
|
|
|
|
{% if word==searchterm %}
|
|
|
|
{{word[0]['way']}}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2019-04-16 17:03:28 +02:00
|
|
|
{% endblock %}
|