2019-07-10 21:19:51 +02:00
|
|
|
{% extends "base.html" %}
|
2019-07-10 20:39:06 +02:00
|
|
|
{% block title %} - {{ list_type }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div id="list">
|
|
|
|
<h1>{{ list_type }} * {{ filename | prettyfilename }}</h1>
|
|
|
|
{% for value, word in list | sort(reverse=True) %}
|
2019-07-22 22:38:24 +02:00
|
|
|
<div><strong class="query"><a href="/?q={{ word}}">{{ word }}</a></strong> <sup>({{ value }})</sup></div>
|
2019-07-10 20:39:06 +02:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|