Archived
1
0

add overview

This commit is contained in:
jeff
2015-10-31 11:10:58 -04:00
parent 2212f61ff0
commit 4c822ba2cd
2 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
{{! overview.mustache
paramters:
- overview (list of PostModels in order of last posted)
}}
<table id="overview_graph">
<thead>
<tr>
<th>Newsgroup</th>
<th>Posted</th>
<th>Subject</th>
</tr>
</thead>
<tbody>
{{#overview}}
<tr>
<td>{{Board}}</td>
<td>{{Date}}</td>
<td>{{Subject}}</td>
</tr>
{{/overview}}
</tbody>
</table>