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 23:27:21 +02:00
2018-04-20 00:06:13 +02:00
if user == nil || user.ID != viewUser.ID
.anime-list-user-avatar
2018-04-18 16:27:08 +02:00
AvatarNoTip(viewUser)
2018-03-14 16:15:35 +01:00
StatusTabs("/+" + viewUser.Nick + "/animelist", statusLists)
AnimeListItems(animeListItems, nextIndex, viewUser, user)