tm20 selection [ready for rene]

This commit is contained in:
gauthiier
2019-12-09 13:45:24 +01:00
parent 46a0cc8c0b
commit abea0f0597
17 changed files with 3421 additions and 1238 deletions
+24
View File
@@ -0,0 +1,24 @@
<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>