Archived
1
0

add posts graph

This commit is contained in:
jeff
2015-10-31 07:27:26 -04:00
parent e82058d961
commit ee7004fc42
3 changed files with 32 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
{{!
posts graph.mustache -- post frequence graph
parameters:
* graph - a postsGraph instance (see srnd/model.go)
}}
<div id="posts_graph">
<table>
<thead>
<tr>
<th>Day</th>
<th>Posts</th>
<th></th>
</tr>
</thead>
<tbody>
{{#graph}}
<tr>
<td>{{Day}}</td>
<td>{{Num}}</td>
<td>{{OvercockGraph}}</td>
</tr>
{{/graph}}
</tbody>
</table>
</div>