2017-06-19 22:16:01 +02:00

13 lines
326 B
Plaintext

component AnimeList(animeList *arn.AnimeList)
table.anime-list
thead
tr
th Anime
th Progress
th Rating
tbody
each item in animeList.Items
tr.anime-list-item
td= item.Anime().Title.Canonical
td= toString(item.Episodes) + " / " + item.Anime().EpisodeCountString()
td= item.FinalRating()