|
|
|
@ -1,6 +1,21 @@
|
|
|
|
|
<!-- IMPORT partials/breadcrumbs.tpl -->
|
|
|
|
|
<div class="btn-toolbar">
|
|
|
|
|
<!-- IMPORT partials/category-filter-right.tpl -->
|
|
|
|
|
|
|
|
|
|
{{{ if !singlePost }}}
|
|
|
|
|
<div class="btn-group pull-right bottom-sheet" component="post-queue/bulk-actions">
|
|
|
|
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" autocomplete="off" aria-haspopup="true" aria-expanded="false">
|
|
|
|
|
<i class="fa fa-clone"></i> [[post-queue:bulk-actions]] <span class="caret"></span>
|
|
|
|
|
</button>
|
|
|
|
|
<ul class="dropdown-menu dropdown-menu-right">
|
|
|
|
|
<li><a href="#" data-action="accept-all">[[post-queue:accept-all]]</a></li>
|
|
|
|
|
<li><a href="#" data-action="accept-selected">[[post-queue:accept-selected]]</a></li>
|
|
|
|
|
<li class="divider"></li>
|
|
|
|
|
<li><a href="#" data-action="reject-all">[[post-queue:reject-all]]</a></li>
|
|
|
|
|
<li><a href="#" data-action="reject-selected">[[post-queue:reject-selected]]</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
{{{ end }}}
|
|
|
|
|
</div>
|
|
|
|
|
<hr/>
|
|
|
|
|
<div class="row">
|
|
|
|
@ -17,6 +32,9 @@
|
|
|
|
|
{{{ each posts }}}
|
|
|
|
|
<div class="panel panel-default" data-id="{posts.id}">
|
|
|
|
|
<div class="panel-heading">
|
|
|
|
|
{{{ if !singlePost }}}
|
|
|
|
|
<input type="checkbox" autocomplete="off" />
|
|
|
|
|
{{{ end }}}
|
|
|
|
|
<strong>{{{ if posts.data.tid }}}[[post-queue:reply]]{{{ else }}}[[post-queue:topic]]{{{ end }}}</strong>
|
|
|
|
|
<span class="timeago pull-right" title={posts.data.timestampISO}></span>
|
|
|
|
|
</div>
|
|
|
|
|