cross-reader/templates/list.html

12 lines
355 B
HTML
Raw Normal View History

2019-07-10 21:19:51 +02:00
{% 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) %}
2019-07-10 21:19:51 +02:00
<div><strong><a href="/?q={{ word}}">{{ word }}</a></strong> <sup>({{ value }})</sup></div>
{% endfor %}
</div>
{% endblock %}