summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/ajax/reattach_suggest.html
blob: 7b9407566d9a8ddae998fc6c564dddf0a7957de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% 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 }})
                    </label>
                </li>
                {% empty %}
                <li><em>(no suggestions)</em></li>
                {% endfor %}