diff options
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 %} |