2017-12-02 20:53:01 +00:00
|
|
|
component PopularCompanies(companies []*arn.Company, popularity map[string]int, user *arn.User)
|
|
|
|
CompaniesTabs(user)
|
|
|
|
|
2017-12-02 22:18:11 +00:00
|
|
|
h1.page-title Popular companies
|
|
|
|
|
2017-12-02 20:53:01 +00:00
|
|
|
.companies
|
|
|
|
ol
|
|
|
|
each company in companies
|
|
|
|
li.mountable
|
|
|
|
a.ajax(href=company.Link())= company.Name.English
|
|
|
|
span= " (" + strconv.Itoa(popularity[company.ID]) + ")"
|