2018-03-10 15:43:57 +00:00
|
|
|
component EditorRankingList(users []*arn.User, idToScore map[string]int, url string)
|
2018-03-10 15:42:39 +00:00
|
|
|
h1.page-title Editor ranking list
|
|
|
|
UsersTabs(url)
|
|
|
|
|
2019-08-28 02:24:39 +00:00
|
|
|
.user-cards
|
|
|
|
each user in users
|
|
|
|
UserCard(user, fmt.Sprintf("%s points", humanize.Comma(int64(idToScore[user.ID]))))
|
2018-03-10 15:42:39 +00:00
|
|
|
|
|
|
|
.footer.mountable
|
|
|
|
p Score is generated from new data submissions and data fixes.
|