2019-10-26 18:06:14 +09:00
|
|
|
component AnimeListPage(animeListItems []*arn.AnimeListItem, nextIndex int, viewUser *arn.User, user *arn.User, statusLists map[string]*arn.AnimeList)
|
2018-03-14 20:13:20 +01:00
|
|
|
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
|
2018-03-14 20:13:20 +01:00
|
|
|
.anime-list-user-avatar
|
2018-04-18 16:27:08 +02:00
|
|
|
AvatarNoTip(viewUser)
|
2018-03-14 16:15:35 +01:00
|
|
|
|
2019-10-26 18:06:14 +09:00
|
|
|
StatusTabs("/+" + viewUser.Nick + "/animelist", statusLists)
|
2018-03-14 20:13:20 +01:00
|
|
|
AnimeListItems(animeListItems, nextIndex, viewUser, user)
|