diff options
Diffstat (limited to 'hyperkitty/templates/threads/right_col.html')
| -rw-r--r-- | hyperkitty/templates/threads/right_col.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html index cbc7772..8744f66 100644 --- a/hyperkitty/templates/threads/right_col.html +++ b/hyperkitty/templates/threads/right_col.html @@ -44,15 +44,12 @@ </form> </div> <div id="participants"> - <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> + {% 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 %} </div> </section> |
