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

38 lines
983 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 )
}}
2016-04-29 23:08:02 +05:00
<!doctype html>
2015-11-01 21:41:05 +05:00
<html>
<head>
<meta charset="utf-8"></meta>
<link rel="stylesheet" href="{{prefix}}static/site.css" />
<link rel="stylesheet" href="{{prefix}}static/user.css" />
2016-02-28 17:40:16 +05:00
<title>{{#i18n.Translations}}{{post_history_title}}{{/i18n.Translations}}</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>
2016-02-28 17:40:16 +05:00
<th>{{#i18n.Translations}}{{month}}{{/i18n.Translations}}</th>
<th>{{#i18n.Translations}}{{posts}}{{/i18n.Translations}}</th>
2015-11-23 02:02:45 +05:00
<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>