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

{# vim: set noet: #}