diff options
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/participants.html | 14 | ||||
-rw-r--r-- | hyperkitty/templates/threads/right_col.html | 15 |
2 files changed, 9 insertions, 20 deletions
diff --git a/hyperkitty/templates/threads/participants.html b/hyperkitty/templates/threads/participants.html deleted file mode 100644 index b40445b..0000000 --- a/hyperkitty/templates/threads/participants.html +++ /dev/null @@ -1,14 +0,0 @@ -{% 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> - 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> |