nodebb-theme-persona 13.3.6 → 13.3.7
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
CHANGED
|
@@ -16,31 +16,32 @@
|
|
|
16
16
|
</div>
|
|
17
17
|
</div>
|
|
18
18
|
<div class="card-body">
|
|
19
|
+
<div component="groups/pending/alert" class="alert alert-info {{{ if group.pending.length }}}hidden{{{ end }}}">[[groups:pending.none]]</div>
|
|
20
|
+
|
|
19
21
|
<table component="groups/pending" class="table table-striped table-hover">
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
</
|
|
43
|
-
{{{end}}}
|
|
22
|
+
<tbody>
|
|
23
|
+
{{{each group.pending}}}
|
|
24
|
+
<tr data-uid="{group.pending.uid}">
|
|
25
|
+
<td class="p-2">
|
|
26
|
+
<a href="{config.relative_path}/user/{group.pending.userslug}">{buildAvatar(group.pending, "24px", true)}</a>
|
|
27
|
+
</td>
|
|
28
|
+
<td class="member-name p-2">
|
|
29
|
+
<a href="{config.relative_path}/user/{group.pending.userslug}">{group.pending.username}</a>
|
|
30
|
+
</td>
|
|
31
|
+
<td class="p-2">
|
|
32
|
+
<div class="btn-group float-end">
|
|
33
|
+
<button type="button" class="btn btn-outline-secondary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
34
|
+
[[global:more]] <span class="caret"></span>
|
|
35
|
+
</button>
|
|
36
|
+
<ul class="dropdown-menu" role="menu">
|
|
37
|
+
<li><a class="dropdown-item" href="#" data-action="accept" role="menuitem">[[groups:pending.accept]]</a></li>
|
|
38
|
+
<li><a class="dropdown-item" href="#" data-action="reject" role="menuitem">[[groups:pending.reject]]</a></li>
|
|
39
|
+
</ul>
|
|
40
|
+
</div>
|
|
41
|
+
</td>
|
|
42
|
+
</tr>
|
|
43
|
+
{{{end}}}
|
|
44
|
+
</tbody>
|
|
44
45
|
</table>
|
|
45
46
|
</div>
|
|
46
47
|
</div>
|
|
@@ -64,30 +65,31 @@
|
|
|
64
65
|
<button class="btn btn-outline-secondary btn-sm float-end" component="groups/members/bulk-invite-button">[[groups:bulk-invite]]</button>
|
|
65
66
|
</div>
|
|
66
67
|
|
|
68
|
+
<div component="groups/invited/alert" class="alert alert-info {{{ if group.invited.length }}}hidden{{{ end }}}">[[groups:invited.none]]</div>
|
|
69
|
+
|
|
67
70
|
<table component="groups/invited" class="table table-striped table-hover">
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
<
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
<
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
</
|
|
90
|
-
{{{end}}}
|
|
71
|
+
<tbody>
|
|
72
|
+
{{{ each group.invited }}}
|
|
73
|
+
<tr data-uid="{group.invited.uid}">
|
|
74
|
+
<td class="p-2">
|
|
75
|
+
<a href="{config.relative_path}/user/{group.invited.userslug}">{buildAvatar(group.invited, "24px", true)}</a>
|
|
76
|
+
</td>
|
|
77
|
+
<td class="member-name p-2">
|
|
78
|
+
<a href="{config.relative_path}/user/{group.invited.userslug}">{group.invited.username}</a>
|
|
79
|
+
</td>
|
|
80
|
+
<td class="p-2">
|
|
81
|
+
<div class="btn-group float-end">
|
|
82
|
+
<button type="button" class="btn btn-outline-secondary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
83
|
+
[[global:more]] <span class="caret"></span>
|
|
84
|
+
</button>
|
|
85
|
+
<ul class="dropdown-menu" role="menu">
|
|
86
|
+
<li><a class="dropdown-item" href="#" data-action="rescindInvite" role="menuitem">[[groups:invited.uninvite]]</a></li>
|
|
87
|
+
</ul>
|
|
88
|
+
</div>
|
|
89
|
+
</td>
|
|
90
|
+
</tr>
|
|
91
|
+
{{{end}}}
|
|
92
|
+
</tbody>
|
|
91
93
|
</table>
|
|
92
94
|
</div>
|
|
93
95
|
</div>
|