21 lines
535 B
Plaintext
Raw Normal View History

2018-03-10 15:43:57 +00:00
component EditorRankingList(users []*arn.User, idToScore map[string]int, url string)
h1.page-title Editor ranking list
UsersTabs(url)
table.ranking-list
thead
tr.mountable
th #
th User
th.ranking-score Score
tbody
for index, user := range users
tr.ranking.mountable
td= toString(index + 1) + "."
td.ranking-user
Avatar(user)
a(href=user.Link())= user.Nick
2018-03-10 15:43:57 +00:00
td.ranking-score= idToScore[user.ID]
.footer.mountable
p Score is generated from new data submissions and data fixes.