summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/ajax/reattach_suggest.html
blob: 0eaa6d540a7f70c17db35414f7bd1d7e23e354a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% 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 %}