This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2015-11-01 11: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" />
|
2016-02-28 13:40:16 +01:00
|
|
|
<title>{{#i18n.Translations}}{{post_history_title}}{{/i18n.Translations}}</title>
|
2015-11-01 11:41:05 -05:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2015-11-22 16:02:45 -05:00
|
|
|
<td>
|
|
|
|
|
<table id="history_graph">
|
|
|
|
|
<thead>
|
2015-11-01 11:41:05 -05:00
|
|
|
<tr>
|
2016-02-28 13:40:16 +01:00
|
|
|
<th>{{#i18n.Translations}}{{month}}{{/i18n.Translations}}</th>
|
|
|
|
|
<th>{{#i18n.Translations}}{{posts}}{{/i18n.Translations}}</th>
|
2015-11-22 16:02:45 -05:00
|
|
|
<th></th>
|
2015-11-01 11:41:05 -05:00
|
|
|
</tr>
|
2015-11-22 16: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 11:41:05 -05:00
|
|
|
</body>
|
2015-11-22 16:02:45 -05:00
|
|
|
</html>
|