summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/ajax/temp_message.html
blob: f518114331a7780018cf8328ca0943542fdfb873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% load url from future %}
{% load gravatar %}
{% load hk_generic %}

<div class="temporary"
	{% if email.level %}style="margin-left:{{ email.level|multiply:"2" }}em;"{% endif %}>
	<!-- Start email -->
	<div class="email">

		<div class="email-header">
			<div class="email-date inline-block pull-right">
				<span class="date">Sent just now, not yet distributed</span>
			</div>
			<div class="gravatar{% if use_mockups %} pull-left{% endif %}">
				{% gravatar email.sender_email 40 %}
			</div>
			<div class="email-author inline-block">
				<span class="name">{{email.sender_name|escapeemail}}</span>
				{% if use_mockups %}
				<br />
				<span class="rank">
					Rank 8
				</span>
				{% endif %}
			</div>
		</div>

		<div class="email-body"
		 >{{ email.content|snip_quoted|wordwrap:90|urlizetrunc:76|escapeemail }}</div>

		<div class="email-info">
		</div>

	</div>
	<!-- End of email -->
</div>

{# vim: set noet: #}