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.
11 lines
369 B
11 lines
369 B
{% extends "base.html" %}
|
|
{% block title %} - {{ list_type }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="list">
|
|
<h1>{{ list_type }} * {{ filename | prettyfilename }}</h1>
|
|
{% for value, word in list | sort(reverse=True) %}
|
|
<div><strong class="query"><a href="/?q={{ word}}">{{ word }}</a></strong> <sup>({{ value }})</sup></div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|
|
|