-
Notifications
You must be signed in to change notification settings - Fork 2
/
user.tpl
57 lines (56 loc) · 2.04 KB
/
user.tpl
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
56
57
<html>
<head>
<title>Mailing List Stats</title>
<script src="sorttable.js"></script>
<style>
body
{
font-family: sans-serif;
}
table.sortable thead
{
background-color:#eee;
color:#666666;
font-weight: bold;
cursor: default;
}
a:link, a:visited, a:active {color: blue;}
a:hover {color: #3399FF;}
th
{
text-align: left;
}
h3
{
background-color: lightblue;
}
#footer
{
font-size:80%;
font-style:italic;
text-align: center;
}
</style>
</head>
<body>
<h1>'@!heading!@' Mailing List Stats</h1>
<h3>@!author.name!@ Stats</h3>
<table>
<tr><th>Author:</th><td>@!author.mail!@</td></tr>
<tr><th>Mails:</th><td>@!author.posts!@</td></tr>
<tr><th>Threads started:</th><td>@!author.started!@</td></tr>
<tr><th>First message:</th><td>@!author.firstmsgdatestr!@</td></tr>
<tr><th>Last message:</th><td>@!author.lastmsgdatestr!@</td></tr>
<tr><th>Average mails sent per day:</th><td>@!author.average!@</td><td></tr>
</table>
<h3>Monthly Usage Charts</h3>
<ul>
<!--(for i in author.years)-->
<li><a href="ml-@!author.pagename!@-usage-@!i!@.png">@!i!@</a></li>
<!--(end)-->
</ul>
<div id="footer">
<p>Generated by <a href="http://mailmanstats.latthi.com">MailmanStats</a> under the Modified BSD Licence</a></p>
</div>
</body>
</html>