summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/threads/right_col.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/threads/right_col.html')
-rw-r--r--hyperkitty/templates/threads/right_col.html15
1 files changed, 9 insertions, 6 deletions
diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html
index 8744f66..7f200fc 100644
--- a/hyperkitty/templates/threads/right_col.html
+++ b/hyperkitty/templates/threads/right_col.html
@@ -44,12 +44,15 @@
</form>
</div>
<div id="participants">
- {% if is_bot %}
- {% include 'threads/participants.html' %}
- {% else %}
- <span id="participants_title">participants</span>
- <img alt="Loading..." class="ajaxloader" src="{{ STATIC_URL }}img/ajax-loader.gif" />
- {% endif %}
+ <span id="participants_title">participants</span> ({{participants|length}})
+ <ul>
+ {% for name, email in participants %}
+ <li>
+ {% gravatar email 20 %}
+ {{ name|escapeemail }}
+ </li>
+ {% endfor %}
+ </ul>
</div>
</section>