summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/threads/right_col.html
blob: 7fa17434a8aac7a5cbb5021756663af13c6fc6be (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{% load gravatar %}
{% load hk_generic %}

<!-- right column -->
<section id="thread_overview_info">
	<!-- Start dates -->
	<div id="thread_date_info">
		<div class="days_num inline-block">
			{{ days_inactive }}
		</div>
		<div class="days_text inline-block">
			days
			<br />
			inactive
		</div>
		<div id="days_old" class="days_num inline-block">
			{{ days_old }}
		</div>
		<div class="days_text inline-block">
			days
			<br />
			old
		</div>
	</div>
	{% if use_mockups %}
	<p id="add_to_fav">
		<a href="#AddFav" class="notsaved">Add to favorite discussions</a>
	</p>
	{% endif %}
	<!-- End dates -->
	<hr id="grey"/>
	<div id="tags">
		{% include 'threads/tags.html' %}
	</div>
	<div id="add_tag">
		<form id="add_tag_form" name="addtag" method="post"
		      action="{% url add_tag mlist_fqdn=list_address, hashid=threadid %}">
			{% csrf_token %}
			{{ addtag_form.as_p }}
		</form>
	</div>
	<div id="participants">
		<span id="participants_title">participants</span> ({{participants|length}})
		<ul>
			{% for name, email in participants.items|sort %}
			<li>
				{% gravatar email 20 %}
				{{ name|escapeemail }}
			</li>
			{% endfor %}
		</ul>
	</div>
</section>

{# vim: set noet: #}