Compare commits
No commits in common. "ccfae13cf7659c5092c6acd7a006d6433e60f3a1" and "faf53708ac5b4aed83d0e6d6a4dfc81917b8d191" have entirely different histories.
ccfae13cf7
...
faf53708ac
4 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ block title
|
|||
h1(style="margin-bottom: 0;")
|
||||
a(href='..') <
|
||||
| #{config.siteTitle}
|
||||
p= lang('ADMIN_USER_EDIT_EDITING_USER', user._id.endsWith('_') ? user._id.replace(/_$/, ' (Guest)') : user._id)
|
||||
p= lang('ADMIN_USER_EDIT_EDITING_USER', user._id)
|
||||
|
||||
block content
|
||||
.columns
|
||||
|
|
|
@ -3,7 +3,7 @@ extends layout.pug
|
|||
block content
|
||||
h2= lang('ADMIN_SETTINGS_USERS_HEADER')
|
||||
each user in users
|
||||
span.is-size-6.inline= user.id.endsWith('_') ? user.id.replace(/_$/, ' (Guest)') : user.id
|
||||
span.is-size-6.inline= user.id
|
||||
a(href=`${_CC.config.base}admin-settings/edit/${user.id}`)
|
||||
span.is-size-7.icon.has-text-info
|
||||
i.fas.fa-edit
|
||||
|
|
|
@ -128,7 +128,7 @@ block content
|
|||
if item.pledgedBy === '_CCUNKNOWN'
|
||||
span.ugc=lang('WISHLIST_PLEDGED_GUEST')
|
||||
else
|
||||
span.ugc=lang('WISHLIST_PLEDGED', item.pledgedBy.endsWith('_') ? item.pledgedBy.replace(/_$/, ' (Guest)') : item.pledgedBy)
|
||||
span.ugc=lang('WISHLIST_PLEDGED', item.pledgedBy)
|
||||
td(data-label='Delete Item')
|
||||
form.inline(
|
||||
method='POST',
|
||||
|
|
|
@ -48,7 +48,7 @@ block content
|
|||
div!= _CC.config.customHtml.wishlists
|
||||
|
||||
ul.noStyle.noLeftMargin
|
||||
if req.user._id !== '_CCUNKNOWN' && !req.user._id.endsWith('_')
|
||||
if req.user._id !== '_CCUNKNOWN'
|
||||
li
|
||||
.box
|
||||
a(href=`${_CC.config.base}wishlist/${req.user._id}`, style='color: #4a4a4a;')
|
||||
|
|
Loading…
Reference in a new issue