PushingScores/templates/diverge.html

20 lines
454 B
HTML
Raw Normal View History

{% extends "layout.html" %}
2019-04-16 17:03:28 +02:00
{% block content %}
2019-04-17 14:44:14 +02:00
<p>{{ searchterm }} : </p>
2019-04-16 18:53:21 +02:00
{% for word in wordlist_dict %}
2019-04-17 14:44:14 +02:00
{% if searchterm == word %}
{% set length_d = wordlist_dict[word]|length %}
{% for item in wordlist_dict[word] %}
{% set address = "/description?id=" + item['id'] %}
2019-05-13 01:45:35 +02:00
<a href={{address}} class="diverge">
2019-04-17 14:44:14 +02:00
{{ item['sentence'] }}
2019-05-13 01:45:35 +02:00
</a><br/><br/><br/>
2019-04-17 14:44:14 +02:00
{% endfor %}
2019-04-16 18:53:21 +02:00
{% endif %}
{% endfor %}
2019-04-17 14:44:14 +02:00
2019-04-16 17:03:28 +02:00
{% endblock %}