summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/ajax/replies.html
blob: bf13c9aadd1631821b31c7f0218cded137385f27 (plain)
1
2
3
4
5
6
7
8
9
10
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 %}