blob: 59cca7af084c82b5c92e7a0a9e777cb512347941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% load url from future %}
{% load hk_generic %}
{% for s_thread in suggested_threads %}
<li><label class="radio"><input type="radio" name="parent" value="{{ s_thread.thread_id }}" />
{{ s_thread.subject }}
<br/>(started {{ s_thread.starting_email|get_date }}, last active: {{ s_thread|get_date }},
<a href="{% url 'thread' mlist_fqdn=mlist.name threadid=s_thread.thread_id %}">see this thread</a>)
</label>
</li>
{% empty %}
<li><em>(no suggestions)</em></li>
{% endfor %}
|