12 lines
632 B
Plaintext
Raw Normal View History

2017-07-22 13:04:54 +00:00
component ProfileAnimeListFilteredByStatus(animeList *arn.AnimeList, viewUser *arn.User, user *arn.User, status string, uri string)
2017-07-06 01:24:56 +00:00
ProfileHeader(viewUser, user, uri)
2017-07-05 14:52:24 +00:00
2018-03-14 15:15:35 +00:00
AnimeListFilteredByStatus(animeList.Items, -1, viewUser, user, status)
2017-07-22 13:04:54 +00:00
2018-03-14 15:15:35 +00:00
component AnimeListFilteredByStatus(animeListItems []*arn.AnimeListItem, nextIndex int, viewUser *arn.User, user *arn.User, status string)
if len(animeListItems) == 0
2017-07-05 14:52:24 +00:00
p.no-data.mountable= viewUser.Nick + " hasn't added any anime to this list yet."
else
.anime-list-container
2017-07-22 13:04:54 +00:00
//- h3.status-name= arn.ListItemStatusName(status)
2018-03-14 15:15:35 +00:00
AnimeList(animeListItems, nextIndex, viewUser, user)