summaryrefslogtreecommitdiff
path: root/views/contacts.pug
blob: 64d39d0ce8c24c200d481becf018aea9ac67cee0 (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
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title Contacts
		style.
			table { min-width: 400px }
			td a.red { text-decoration: none; color: brown; font-size: 14px; margin-left: 8px; }
			td a.blue { text-decoration: none; color: black; font-size: 16px; margin-left: 8px; }
			td a.blue:hover { color: blue; }
	body
		include header
		article

			h1 Friends & Enemies

			table
				thead
					tr
						th Friends
						th Last seen
						th
				tbody
					each who in friends
						tr
							td
								a.black(href="/user/"+who.name)= who.name
							td= who.atime
							td.r
								a.blue(href="/message/send/"+who.name) 📝
								a.red(href="/contacts/remove/"+who.name) ❌
					else
						tr
							td Nobody

			if enemies.length > 0
				p

				table
					thead
						tr
							th Blacklist
							th
					tbody
						each who in enemies
							tr
								td
									a.black(href="/user/"+who.name)= who.name
								td.r
									a.red(href="/contacts/remove/"+who.name) ❌
						else
							tr
								td Nobody