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-10-31 07:27:26 -04:00
|
|
|
{{!
|
|
|
|
|
posts graph.mustache -- post frequence graph
|
|
|
|
|
parameters:
|
|
|
|
|
|
|
|
|
|
* graph - a postsGraph instance (see srnd/model.go)
|
|
|
|
|
}}
|
2015-10-31 07:57:19 -04:00
|
|
|
|
|
|
|
|
<table id="posts_graph">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Day</th>
|
|
|
|
|
<th>Posts</th>
|
|
|
|
|
<th></th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{#graph.Scale}}
|
2015-10-31 07:27:26 -04:00
|
|
|
<tr>
|
2015-10-31 07:57:19 -04:00
|
|
|
<td>{{Day}}</td>
|
|
|
|
|
<td>{{Num}}</td>
|
|
|
|
|
<td>{{OvercockGraph}}</td>
|
2015-10-31 07:27:26 -04:00
|
|
|
</tr>
|
2015-10-31 07:57:19 -04:00
|
|
|
{{/graph.Scale}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|