diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2013-05-14 13:44:42 +0200 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2013-05-14 13:44:42 +0200 |
| commit | fb6423fd8d2e0068c9c5b5bb8a643ea991e59739 (patch) | |
| tree | 5b8e07532ca7763052017e3027eb8db8affa06e6 /hyperkitty/templates/threads/replies.html | |
| parent | 4b1df7bbdb0f0fa35cf738235aff8170a37b7d04 (diff) | |
Speed up page loading on long threads
Speed up page loading on threads with many replies by loading the
replies asynchronously.
Preserve search engine indexation by detecting bots and serving the
usual page in one go.
Diffstat (limited to 'hyperkitty/templates/threads/replies.html')
| -rw-r--r-- | hyperkitty/templates/threads/replies.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hyperkitty/templates/threads/replies.html b/hyperkitty/templates/threads/replies.html new file mode 100644 index 0000000..19ee0e2 --- /dev/null +++ b/hyperkitty/templates/threads/replies.html @@ -0,0 +1,11 @@ +{% load url from future %} +{% load hk_generic %} + + {% for email in replies %} + <div class="{% cycle 'even' 'odd' %}" + {% if email.level %}style="margin-left:{{ email.level|multiply:"2" }}em;"{% endif %}> + <!-- Start email --> + {% include 'messages/message.html' %} + <!-- End of email --> + </div> + {% endfor %} |
