List_server_busy/www/templates/selection.html
2019-12-09 13:45:24 +01:00

24 lines
570 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>Selection</title>
</head>
<body>
{% for k, v in sel.items() %}
<b>{{k}}</b>
<ul>
{% for h in v %}
<li><a href="{{h.url}}" target="_blank">{{h.subject}}</a> -- <i>{{h.author_name}}</i> ({{h.len}} chars)</li>
{% if 'follow-up' in h %}
<ul>
{% for f in h['follow-up'] %}
<li><a href="{{f.url}}" target="_blank">{{f.subject}}</a> -- <i>{{f.author_name}}</i> ({{f.len}} chars)</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</ul>
{% endfor %}
</body>
</html>