make current user like other wishlists
This commit is contained in:
parent
559c69e16f
commit
b12673930a
1 changed files with 6 additions and 1 deletions
|
@ -1,8 +1,13 @@
|
||||||
extends layout.pug
|
extends layout.pug
|
||||||
|
|
||||||
block content
|
block content
|
||||||
a.button(href=`/wishlist/${req.user._id}`) My Wishlist
|
|
||||||
ul.noStyle.noLeftMargin
|
ul.noStyle.noLeftMargin
|
||||||
|
li
|
||||||
|
a(href=`/wishlist/${req.user._id}`)
|
||||||
|
.box
|
||||||
|
span=req.user._id
|
||||||
|
span : ???/???
|
||||||
|
progress.progress(value=1, max=1)
|
||||||
each user in users
|
each user in users
|
||||||
if req.user._id !== user.id
|
if req.user._id !== user.id
|
||||||
li
|
li
|
||||||
|
|
Loading…
Reference in a new issue