Fixed profiles for logged out users
This commit is contained in:
@ -95,28 +95,28 @@ component ProfileHead(viewUser *arn.User, user *arn.User, uri string)
|
|||||||
Icon("star")
|
Icon("star")
|
||||||
span.profile-pro-status-text PRO
|
span.profile-pro-status-text PRO
|
||||||
|
|
||||||
if user != nil
|
|
||||||
.profile-actions
|
.profile-actions
|
||||||
if user.ID != viewUser.ID
|
if user != nil && user.ID != viewUser.ID
|
||||||
if !user.Follows().Contains(viewUser.ID)
|
if !user.Follows().Contains(viewUser.ID)
|
||||||
button.profile-action.action(data-action="followUser", data-trigger="click", data-api="/api/userfollows/" + user.ID + "/add/" + viewUser.ID)
|
button.profile-action.action(data-action="followUser", data-trigger="click", data-api="/api/userfollows/" + user.ID + "/add/" + viewUser.ID)
|
||||||
Icon("user-plus")
|
Icon("user-plus")
|
||||||
span Follow
|
span Follow
|
||||||
else
|
else
|
||||||
button.profile-action.action(data-action="unfollowUser", data-trigger="click", data-api="/api/userfollows/" + user.ID + "/remove/" + viewUser.ID)
|
button.profile-action.action(data-action="unfollowUser", data-trigger="click", data-api="/api/userfollows/" + user.ID + "/remove/" + viewUser.ID)
|
||||||
Icon("user-times")
|
Icon("user-times")
|
||||||
span Unfollow
|
span Unfollow
|
||||||
|
|
||||||
a.button.profile-action.ajax(href="/+" + viewUser.Nick + "/animelist/watching")
|
a.button.profile-action.ajax(href="/+" + viewUser.Nick + "/animelist/watching")
|
||||||
Icon("list")
|
Icon("list")
|
||||||
span Anime list
|
span Anime list
|
||||||
|
|
||||||
if user.ID != viewUser.ID
|
if user != nil && user.ID != viewUser.ID
|
||||||
a.button.profile-action.ajax(href="/compare/animelist/" + user.Nick + "/" + viewUser.Nick)
|
a.button.profile-action.ajax(href="/compare/animelist/" + user.Nick + "/" + viewUser.Nick)
|
||||||
Icon("exchange")
|
Icon("exchange")
|
||||||
span Compare
|
span Compare
|
||||||
|
|
||||||
a.button.profile-action.ajax(href="/+" + viewUser.Nick + "/recommended/anime")
|
a.button.profile-action.ajax(href="/+" + viewUser.Nick + "/recommended/anime")
|
||||||
Icon("archive")
|
Icon("archive")
|
||||||
span Recomms
|
span Recomms
|
||||||
|
|
Reference in New Issue
Block a user