summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/group_messaging/threads_list.html
blob: c9376f560e3e0a8de2a6ffb52c876c06221bc7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<ul id="threads-list">
{% if threads %}
    {% for thread in threads %}
        <li>
            <a data-thread-id="{{ thread.id }}">
                {{ thread.headline|escape }}
            </a>
        </li>
    {% endfor %}
{% else %}
    <li class="empty">{% trans %}there are no messages yet...{% endtrans %}</li>
{% endif %}
</ul>