Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/templates/default/graph_history.mustache

37 lines
818 B
Plaintext
Raw Normal View History

2015-11-01 21:41:05 +05:00
{{!
graph_history.mustache
template parameters:
- history ( a list of PostEntry instances, see srnd/model.go )
}}
<html>
<head>
<meta charset="utf-8"></meta>
<link rel="stylesheet" href="{{prefix}}static/site.css" />
<link rel="stylesheet" href="{{prefix}}static/user.css" />
2015-11-01 21:48:37 +05:00
<title> Post History</title>
2015-11-01 21:41:05 +05:00
</head>
<body>
2015-11-23 02:02:45 +05:00
<td>
<table id="history_graph">
<thead>
2015-11-01 21:41:05 +05:00
<tr>
2015-11-23 02:02:45 +05:00
<th>Month</th>
<th>Posts</th>
<th></th>
2015-11-01 21:41:05 +05:00
</tr>
2015-11-23 02:02:45 +05:00
</thead>
<tbody>
{{#history.Scale}}
<tr>
<td>{{Date}}</td>
<td class="history_num">{{Num}}</td>
<td>{{OvercockGraph}}</td>
</tr>
{{/history.Scale}}
</tbody>
</table>
</td>
2015-11-01 21:41:05 +05:00
</body>
2015-11-23 02:02:45 +05:00
</html>