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 11:10:58 -04:00
|
|
|
{{! overview.mustache
|
|
|
|
|
paramters:
|
|
|
|
|
|
|
|
|
|
- overview (list of PostModels in order of last posted)
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
<table id="overview_graph">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2016-02-28 13:40:16 +01:00
|
|
|
<th>{{#i18n.Translations}}{{newsgroup}}{{/i18n.Translations}}</th>
|
|
|
|
|
<th>{{#i18n.Translations}}{{posted}}{{/i18n.Translations}}</th>
|
|
|
|
|
<th>{{#i18n.Translations}}{{subject}}{{/i18n.Translations}}</th>
|
2015-10-31 11:10:58 -04:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{#overview}}
|
|
|
|
|
<tr>
|
2017-01-13 14:08:33 -05:00
|
|
|
<td><a href="{{Prefix}}b/{{Board}}/">{{Board}}</td>
|
2015-10-31 11:10:58 -04:00
|
|
|
<td>{{Date}}</td>
|
2016-05-20 06:25:30 -04:00
|
|
|
<td><a href="{{PostURL}}">{{Truncate.Subject}}</a></td>
|
2015-10-31 11:10:58 -04:00
|
|
|
</tr>
|
|
|
|
|
{{/overview}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|