9 lines
415 B
Plaintext
Raw Normal View History

component AnimeListPage(animeListItems []*arn.AnimeListItem, nextIndex int, viewUser *arn.User, user *arn.User, statusLists map[string]*arn.AnimeList)
h1.page-title= viewUser.Nick + "'s anime list"
2017-06-29 21:27:21 +00:00
2018-04-19 22:06:13 +00:00
if user == nil || user.ID != viewUser.ID
.anime-list-user-avatar
2018-04-18 14:27:08 +00:00
AvatarNoTip(viewUser)
2018-03-14 15:15:35 +00:00
StatusTabs("/+" + viewUser.Nick + "/animelist", statusLists)
AnimeListItems(animeListItems, nextIndex, viewUser, user)