nodebb-theme-persona 13.0.43 → 13.0.44
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/account/blocks.tpl +27 -27
- package/templates/account/categories.tpl +23 -23
- package/templates/account/consent.tpl +58 -58
- package/templates/account/edit/password.tpl +25 -25
- package/templates/account/edit/username.tpl +21 -21
- package/templates/account/edit.tpl +115 -116
- package/templates/account/followers.tpl +12 -12
- package/templates/account/following.tpl +12 -12
- package/templates/account/groups.tpl +13 -13
- package/templates/account/info.tpl +198 -198
- package/templates/account/posts.tpl +14 -14
- package/templates/account/profile.tpl +138 -138
- package/templates/account/sessions.tpl +30 -30
- package/templates/account/theme.tpl +22 -22
- package/templates/account/topics.tpl +24 -24
- package/templates/account/uploads.tpl +38 -38
- package/templates/partials/account/footer.tpl +1 -0
- package/templates/partials/account/header.tpl +40 -39
- package/templates/partials/categories/link.tpl +10 -10
- package/theme.json +6 -6
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- IMPORT partials/account/header.tpl -->
|
|
1
|
+
<!-- IMPORT partials/account/header.tpl -->
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
<div class="users row">
|
|
4
|
+
<div class="col-12">
|
|
5
|
+
<h1>[[pages:{template.name}, {username}]]</h1>
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
<!-- IMPORT partials/users_list.tpl -->
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
<!-- IF !users.length -->
|
|
10
|
+
<div class="alert alert-warning text-center">[[user:has_no_follower]]</div>
|
|
11
|
+
<!-- ENDIF !users.length -->
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
</div>
|
|
13
|
+
<!-- IMPORT partials/paginator.tpl -->
|
|
16
14
|
</div>
|
|
17
|
-
</div>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<!-- IMPORT partials/account/footer.tpl -->
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- IMPORT partials/account/header.tpl -->
|
|
1
|
+
<!-- IMPORT partials/account/header.tpl -->
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
<div class="users row">
|
|
4
|
+
<div class="col-12">
|
|
5
|
+
<h1>[[pages:{template.name}, {username}]]</h1>
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
<!-- IMPORT partials/users_list.tpl -->
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
<!-- IF !users.length -->
|
|
10
|
+
<div class="alert alert-warning text-center">[[user:follows_no_one]]</div>
|
|
11
|
+
<!-- ENDIF !users.length -->
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
</div>
|
|
13
|
+
<!-- IMPORT partials/paginator.tpl -->
|
|
16
14
|
</div>
|
|
17
|
-
</div>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<!-- IMPORT partials/account/footer.tpl -->
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- IMPORT partials/account/header.tpl -->
|
|
1
|
+
<!-- IMPORT partials/account/header.tpl -->
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
<div class="row">
|
|
4
|
+
<h1>[[pages:{template.name}, {username}]]</h1>
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
</div>
|
|
6
|
+
<div class="col-12 groups list">
|
|
7
|
+
<div component="groups/container" id="groups-list" class="row">
|
|
8
|
+
<!-- IF !groups.length -->
|
|
9
|
+
<div class="alert alert-warning text-center">[[groups:no_groups_found]]</div>
|
|
10
|
+
<!-- ELSE -->
|
|
11
|
+
<!-- IMPORT partials/groups/list.tpl -->
|
|
12
|
+
<!-- ENDIF !groups.length -->
|
|
15
13
|
</div>
|
|
16
14
|
</div>
|
|
17
|
-
</div>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<!-- IMPORT partials/account/footer.tpl -->
|
|
@@ -1,226 +1,226 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- IMPORT partials/account/header.tpl -->
|
|
1
|
+
<!-- IMPORT partials/account/header.tpl -->
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
</div>
|
|
3
|
+
<!-- IF sessions.length -->
|
|
4
|
+
<div class="row mb-3">
|
|
5
|
+
<div class="col-12 col-md-12">
|
|
6
|
+
<h4>[[global:sessions]]</h4>
|
|
7
|
+
<ul class="list-group" component="user/sessions">
|
|
8
|
+
{{{each sessions}}}
|
|
9
|
+
<li class="list-group-item" data-uuid="{../uuid}">
|
|
10
|
+
<div class="float-end">
|
|
11
|
+
<!-- IF isSelfOrAdminOrGlobalModerator -->
|
|
12
|
+
<!-- IF !../current -->
|
|
13
|
+
<button class="btn btn-sm btn-outline-secondary" type="button" data-action="revokeSession">Revoke Session</button>
|
|
14
|
+
<!-- ENDIF !../current -->
|
|
15
|
+
<!-- ENDIF isSelfOrAdminOrGlobalModerator -->
|
|
16
|
+
{function.userAgentIcons}
|
|
17
|
+
<i class="fa fa-circle text-<!-- IF ../current -->success<!-- ELSE -->muted<!-- ENDIF ../current -->"></i>
|
|
18
|
+
</div>
|
|
19
|
+
{../browser} {../version} on {../platform}<br />
|
|
20
|
+
<small class="timeago text-muted" title="{../datetimeISO}"></small>
|
|
21
|
+
<ul>
|
|
22
|
+
<li><strong>[[global:ip_address]]</strong>: {../ip}</li>
|
|
23
|
+
</ul>
|
|
24
|
+
</li>
|
|
25
|
+
{{{end}}}
|
|
26
|
+
</ul>
|
|
29
27
|
</div>
|
|
30
|
-
|
|
28
|
+
</div>
|
|
29
|
+
<!-- ENDIF sessions.length -->
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
</div>
|
|
31
|
+
<div class="row">
|
|
32
|
+
<div class="col-sm-6">
|
|
33
|
+
<div class="card mb-3">
|
|
34
|
+
<h5 class="card-header">
|
|
35
|
+
[[global:recentips]]
|
|
36
|
+
</h5>
|
|
37
|
+
<div class="card-body">
|
|
38
|
+
<ul>
|
|
39
|
+
{{{each ips}}}
|
|
40
|
+
<li>{@value}</li>
|
|
41
|
+
{{{end}}}
|
|
42
|
+
</ul>
|
|
45
43
|
</div>
|
|
44
|
+
</div>
|
|
46
45
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
</div>
|
|
46
|
+
<div class="card mb-3">
|
|
47
|
+
<h5 class="card-header">
|
|
48
|
+
[[user:info.username-history]]
|
|
49
|
+
</h5>
|
|
50
|
+
<div class="card-body">
|
|
51
|
+
<ul class="list-group">
|
|
52
|
+
{{{each usernames}}}
|
|
53
|
+
<li class="list-group-item">
|
|
54
|
+
{../value}
|
|
55
|
+
<small class="float-end"><span class="timeago" title="{../timestampISO}"></span></small>
|
|
56
|
+
</li>
|
|
57
|
+
{{{end}}}
|
|
58
|
+
</ul>
|
|
61
59
|
</div>
|
|
60
|
+
</div>
|
|
62
61
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
</div>
|
|
62
|
+
<div class="card">
|
|
63
|
+
<h5 class="card-header">
|
|
64
|
+
[[user:info.email-history]]
|
|
65
|
+
</h5>
|
|
66
|
+
<div class="card-body">
|
|
67
|
+
<ul class="list-group">
|
|
68
|
+
{{{each emails}}}
|
|
69
|
+
<li class="list-group-item">
|
|
70
|
+
{../value}
|
|
71
|
+
<small class="float-end"><span class="timeago" title="{../timestampISO}"></span></small>
|
|
72
|
+
</li>
|
|
73
|
+
{{{end}}}
|
|
74
|
+
</ul>
|
|
77
75
|
</div>
|
|
78
76
|
</div>
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
</
|
|
97
|
-
</
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
77
|
+
</div>
|
|
78
|
+
<div class="col-sm-6">
|
|
79
|
+
<div class="card mb-3">
|
|
80
|
+
<h5 class="card-header">
|
|
81
|
+
[[user:info.latest-flags]]
|
|
82
|
+
</h5>
|
|
83
|
+
<div class="card-body">
|
|
84
|
+
<!-- IF history.flags.length -->
|
|
85
|
+
<ul class="recent-flags list-unstyled">
|
|
86
|
+
{{{each history.flags}}}
|
|
87
|
+
<li>
|
|
88
|
+
<p>
|
|
89
|
+
{{{ if history.flags.targetPurged }}}
|
|
90
|
+
<div>[[flags:target-purged]]</div>
|
|
91
|
+
{{{ else }}}
|
|
92
|
+
<a class="title" href="{config.relative_path}/post/{../pid}">{../title}</a><br />
|
|
93
|
+
{{{ end }}}
|
|
94
|
+
<span class="timestamp">[[flags:flagged-timeago-readable, {../timestampISO}, {../timestampReadable}]]</span>
|
|
95
|
+
</p>
|
|
96
|
+
</li>
|
|
97
|
+
{{{end}}}
|
|
98
|
+
</ul>
|
|
99
|
+
<!-- ELSE -->
|
|
100
|
+
<div class="alert alert-success">[[user:info.no-flags]]</div>
|
|
101
|
+
<!-- ENDIF history.flags.length -->
|
|
104
102
|
</div>
|
|
103
|
+
</div>
|
|
105
104
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
105
|
+
<div class="card mb-3">
|
|
106
|
+
<h5 class="card-header">
|
|
107
|
+
[[user:info.ban-history]]
|
|
109
108
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
</div>
|
|
109
|
+
<!-- IF !banned -->
|
|
110
|
+
<!-- IF !isSelf -->
|
|
111
|
+
<button class="btn btn-sm float-end btn-danger" component="account/ban">[[user:ban_account]]</button>
|
|
112
|
+
<!-- ENDIF !isSelf -->
|
|
113
|
+
<!-- ELSE -->
|
|
114
|
+
<!-- IF !isSelf -->
|
|
115
|
+
<button class="btn btn-sm float-end btn-success" component="account/unban">[[user:unban_account]]</button>
|
|
116
|
+
<!-- ENDIF !isSelf -->
|
|
117
|
+
<!-- ENDIF !banned -->
|
|
118
|
+
</h5>
|
|
119
|
+
<div class="card-body">
|
|
120
|
+
<!-- IF history.bans.length -->
|
|
121
|
+
<ul class="ban-history list-unstyled">
|
|
122
|
+
{{{each history.bans}}}
|
|
123
|
+
<li>
|
|
124
|
+
<p>
|
|
125
|
+
<a href="{config.relative_path}/user/{history.bans.user.userslug}">{buildAvatar(history.bans.user, "24px", true)}</a>
|
|
126
|
+
<strong>
|
|
127
|
+
<a href="<!-- IF history.bans.user.userslug -->{config.relative_path}/user/{history.bans.user.userslug}<!-- ELSE -->#<!-- ENDIF history.bans.user.userslug -->" itemprop="author" data-username="{history.bans.user.username}" data-uid="{history.bans.user.uid}">{history.bans.user.username}</a>
|
|
128
|
+
</strong>
|
|
129
|
+
<span class="timestamp timeago" title="{../timestampISO}"></span> — {../timestampReadable}<br />
|
|
130
|
+
<!-- IF ../until -->
|
|
131
|
+
<span class="expiry">[[user:info.banned-until, {../untilReadable}]]</span><br />
|
|
132
|
+
<!-- ELSE -->
|
|
133
|
+
<span class="expiry">[[user:info.banned-permanently]]</span><br />
|
|
134
|
+
<!-- ENDIF ../until -->
|
|
135
|
+
<span class="reason"><strong>[[user:info.banned-reason-label]]</strong>: {../reason}</span>
|
|
136
|
+
</p>
|
|
137
|
+
</li>
|
|
138
|
+
{{{end}}}
|
|
139
|
+
</ul>
|
|
140
|
+
<!-- ELSE -->
|
|
141
|
+
<div class="alert alert-success">[[user:info.no-ban-history]]</div>
|
|
142
|
+
<!-- ENDIF history.bans.length -->
|
|
145
143
|
</div>
|
|
144
|
+
</div>
|
|
146
145
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
146
|
+
<div class="card mb-3">
|
|
147
|
+
<h5 class="card-header">
|
|
148
|
+
[[user:info.mute-history]]
|
|
150
149
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
150
|
+
{{{ if !muted }}}
|
|
151
|
+
{{{ if !isSelf }}}
|
|
152
|
+
<button class="btn btn-sm float-end btn-danger" component="account/mute">[[user:mute_account]]</button>
|
|
153
|
+
{{{ end }}}
|
|
154
|
+
{{{ else }}}
|
|
155
|
+
{{{ if !isSelf }}}
|
|
156
|
+
<button class="btn btn-sm float-end btn-success" component="account/unmute">[[user:unmute_account]]</button>
|
|
157
|
+
{{{ end }}}
|
|
158
|
+
{{{ end }}}
|
|
159
|
+
</h5>
|
|
160
|
+
<div class="card-body">
|
|
161
|
+
{{{ if history.mutes.length }}}
|
|
162
|
+
<ul class="ban-history list-unstyled">
|
|
163
|
+
{{{ each history.mutes }}}
|
|
164
|
+
<li>
|
|
165
|
+
<p>
|
|
166
|
+
<a href="{config.relative_path}/user/{history.mutes.user.userslug}">{buildAvatar(history.mutes.user, "24px", true)}</a>
|
|
167
|
+
<strong>
|
|
168
|
+
<a href="<!-- IF history.mutes.user.userslug -->{config.relative_path}/user/{history.mutes.user.userslug}<!-- ELSE -->#<!-- ENDIF history.mutes.user.userslug -->" itemprop="author" data-username="{history.mutes.user.username}" data-uid="{history.mutes.user.uid}">{history.mutes.user.username}</a>
|
|
169
|
+
</strong>
|
|
170
|
+
<span class="timestamp timeago" title="{../timestampISO}"></span> — {../timestampReadable}<br />
|
|
171
|
+
{{{ if ../until }}}
|
|
172
|
+
<span class="expiry">[[user:info.muted-until, {../untilReadable}]]</span><br />
|
|
173
|
+
{{{ end }}}
|
|
175
174
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
</div>
|
|
175
|
+
<span class="reason"><strong>[[user:info.banned-reason-label]]</strong>: {../reason}</span>
|
|
176
|
+
</p>
|
|
177
|
+
</li>
|
|
178
|
+
{{{end}}}
|
|
179
|
+
</ul>
|
|
180
|
+
{{{ else }}}
|
|
181
|
+
<div class="alert alert-success">[[user:info.no-mute-history]]</div>
|
|
182
|
+
{{{ end }}}
|
|
185
183
|
</div>
|
|
184
|
+
</div>
|
|
186
185
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
186
|
+
<!-- IF isAdminOrGlobalModerator -->
|
|
187
|
+
<div class="card">
|
|
188
|
+
<h5 class="card-header">
|
|
189
|
+
[[user:info.moderation-note]]
|
|
190
|
+
</h5>
|
|
191
|
+
<div class="card-body">
|
|
192
|
+
<textarea component="account/moderation-note" class="form-control"></textarea>
|
|
193
|
+
<br/>
|
|
194
|
+
<button class="btn btn-sm float-end btn-success" component="account/save-moderation-note">[[user:info.moderation-note.add]]</button>
|
|
195
|
+
<br/>
|
|
196
|
+
<div component="account/moderation-note/list">
|
|
197
|
+
{{{each moderationNotes}}}
|
|
198
|
+
<hr/>
|
|
200
199
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
200
|
+
<div class="clearfix">
|
|
201
|
+
<div class="float-start">
|
|
202
|
+
<a href="<!-- IF moderationNotes.user.userslug -->{config.relative_path}/user/{moderationNotes.user.userslug}<!-- ELSE -->#<!-- ENDIF moderationNotes.user.userslug -->">{buildAvatar(moderationNotes.user, "24px", true)}</a>
|
|
203
|
+
<strong>
|
|
204
|
+
<a href="<!-- IF moderationNotes.user.userslug -->{config.relative_path}/user/{moderationNotes.user.userslug}<!-- ELSE -->#<!-- ENDIF moderationNotes.user.userslug -->" itemprop="author" data-username="{moderationNotes.user.username}" data-uid="{moderationNotes.user.uid}">{moderationNotes.user.username}</a>
|
|
205
|
+
</strong>
|
|
207
206
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
207
|
+
<div class="visible-xs-inline-block visible-sm-inline-block visible-md-inline-block visible-lg-inline-block">
|
|
208
|
+
<span class="timeago" title="{moderationNotes.timestampISO}"></span>
|
|
209
|
+
</div>
|
|
210
|
+
<br />
|
|
212
211
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
</div>
|
|
212
|
+
<div class="content">
|
|
213
|
+
{moderationNotes.note}
|
|
216
214
|
</div>
|
|
217
215
|
</div>
|
|
218
|
-
{{{end}}}
|
|
219
216
|
</div>
|
|
220
|
-
|
|
217
|
+
{{{end}}}
|
|
221
218
|
</div>
|
|
219
|
+
<!-- IMPORT partials/paginator.tpl -->
|
|
222
220
|
</div>
|
|
223
|
-
<!-- ENDIF isAdminOrGlobalModerator -->
|
|
224
221
|
</div>
|
|
222
|
+
<!-- ENDIF isAdminOrGlobalModerator -->
|
|
225
223
|
</div>
|
|
226
|
-
</div>
|
|
224
|
+
</div>
|
|
225
|
+
|
|
226
|
+
<!-- IMPORT partials/account/footer.tpl -->
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- IMPORT partials/account/header.tpl -->
|
|
1
|
+
<!-- IMPORT partials/account/header.tpl -->
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
<div class="row">
|
|
4
|
+
<h1>{title}</h1>
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
<!-- IF !posts.length -->
|
|
7
|
+
<div class="alert alert-warning text-center">{noItemsFoundKey}</div>
|
|
8
|
+
<!-- ENDIF !posts.length -->
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
<div class="col-12">
|
|
11
|
+
<!-- IMPORT partials/posts_list.tpl -->
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
</div>
|
|
13
|
+
<!-- IF config.usePagination -->
|
|
14
|
+
<!-- IMPORT partials/paginator.tpl -->
|
|
15
|
+
<!-- ENDIF config.usePagination -->
|
|
18
16
|
</div>
|
|
19
|
-
</div>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
<!-- IMPORT partials/account/footer.tpl -->
|