8 lines
272 B
Plaintext
Raw Normal View History

component OsuRankingList(users []*arn.User, url string)
2017-10-07 08:52:59 +00:00
h1.page-title osu! ranking list
UsersTabs(url)
2017-10-07 08:52:59 +00:00
.user-cards
each user in users
UserCard(user, fmt.Sprintf("%s pp (%.1f%%)", humanize.Comma(int64(user.Accounts.Osu.PP + 0.5)), user.Accounts.Osu.Accuracy))
2017-10-07 08:52:59 +00:00