summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/threads/participants.html
blob: b40445b0b8ac58f440674a61437664e98a76960b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% load url from future %}
{% load gravatar %}
{% load hk_generic %}

		<span id="participants_title">participants</span> ({{participants|length}})
		<ul>
			{% for name, email in participants.items|sort %}
			<li>
				{% gravatar email 20 %}
				{{ name|escapeemail }}
			</li>
			{% endfor %}
		</ul>