diff options
author | Mario <mario@mariovavti.com> | 2021-03-16 12:32:20 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-16 12:32:20 +0100 |
commit | c658bbca2416bc1d3e51ef6072fea57151d40981 (patch) | |
tree | b32c1f0c209fc03654082a2be025d3ce7ca39815 /view | |
parent | 4e921cfdcfd6f021081a955855ecbafb1f30ec48 (diff) | |
download | volse-hubzilla-c658bbca2416bc1d3e51ef6072fea57151d40981.tar.gz volse-hubzilla-c658bbca2416bc1d3e51ef6072fea57151d40981.tar.bz2 volse-hubzilla-c658bbca2416bc1d3e51ef6072fea57151d40981.zip |
simplify get_pending_accounts query so that it will work in postgres. this will introduce a regression in rendering the table background color.
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/admin_accounts.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/admin_accounts.tpl b/view/tpl/admin_accounts.tpl index 8d6506184..444905fc7 100644 --- a/view/tpl/admin_accounts.tpl +++ b/view/tpl/admin_accounts.tpl @@ -21,7 +21,7 @@ <td class="created">{{$u.reg_created}}<br>{{$u.reg_n}} {{if $u.reg_expires < $now}} ★EXPIRED★{{/if}}</td> <td class="created">{{$u.reg_startup}}<br>{{$u.reg_expires}}</td> - <td class="email">{{$u.reg_did2}}<br>{{$u.reg_vfd}}</td> + <td class="email">{{$u.reg_did2}}<br>{{if $u.reg_vfd}}verified{{else}}not yet verified{{/if}}</td> <td class="email">{{$u.reg_email}}<br>{{$u.reg_atip}}</td> <td class="checkbox_bulkedit"><input type="checkbox" class="pending_ckbx" id="id_pending_{{$n}}" name="pending[]" value="{{$n}}"></td> <td class="tools"> |