nodebb-theme-persona 12.0.0 → 12.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/templates/post-queue.tpl +18 -0
package/package.json
CHANGED
package/templates/post-queue.tpl
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
<!-- IMPORT partials/breadcrumbs.tpl -->
|
|
2
2
|
<div class="btn-toolbar">
|
|
3
3
|
<!-- IMPORT partials/category-filter-right.tpl -->
|
|
4
|
+
|
|
5
|
+
{{{ if !singlePost }}}
|
|
6
|
+
<div class="btn-group pull-right bottom-sheet" component="post-queue/bulk-actions">
|
|
7
|
+
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" autocomplete="off" aria-haspopup="true" aria-expanded="false">
|
|
8
|
+
<i class="fa fa-clone"></i> [[post-queue:bulk-actions]] <span class="caret"></span>
|
|
9
|
+
</button>
|
|
10
|
+
<ul class="dropdown-menu dropdown-menu-right">
|
|
11
|
+
<li><a href="#" data-action="accept-all">[[post-queue:accept-all]]</a></li>
|
|
12
|
+
<li><a href="#" data-action="accept-selected">[[post-queue:accept-selected]]</a></li>
|
|
13
|
+
<li class="divider"></li>
|
|
14
|
+
<li><a href="#" data-action="reject-all">[[post-queue:reject-all]]</a></li>
|
|
15
|
+
<li><a href="#" data-action="reject-selected">[[post-queue:reject-selected]]</a></li>
|
|
16
|
+
</ul>
|
|
17
|
+
</div>
|
|
18
|
+
{{{ end }}}
|
|
4
19
|
</div>
|
|
5
20
|
<hr/>
|
|
6
21
|
<div class="row">
|
|
@@ -17,6 +32,9 @@
|
|
|
17
32
|
{{{ each posts }}}
|
|
18
33
|
<div class="panel panel-default" data-id="{posts.id}">
|
|
19
34
|
<div class="panel-heading">
|
|
35
|
+
{{{ if !singlePost }}}
|
|
36
|
+
<input type="checkbox" autocomplete="off" />
|
|
37
|
+
{{{ end }}}
|
|
20
38
|
<strong>{{{ if posts.data.tid }}}[[post-queue:reply]]{{{ else }}}[[post-queue:topic]]{{{ end }}}</strong>
|
|
21
39
|
<span class="timeago pull-right" title={posts.data.timestampISO}></span>
|
|
22
40
|
</div>
|