Added infinite scrolling to companies
This commit is contained in:
30
pages/companies/all.pixy
Normal file
30
pages/companies/all.pixy
Normal file
@ -0,0 +1,30 @@
|
||||
component CompaniesIndex(groups [][]*arn.Company, user *arn.User)
|
||||
CompaniesTabs(user)
|
||||
|
||||
h1.page-title All companies
|
||||
|
||||
.company-index-groups
|
||||
each group in groups
|
||||
.company-index-group.mountable
|
||||
h3= strings.ToUpper(group[0].Name.English[:1])
|
||||
|
||||
ul
|
||||
each company in group
|
||||
li
|
||||
a.ajax(href=company.Link())= company.Name.English
|
||||
|
||||
component CompaniesTabs(user *arn.User)
|
||||
.tabs
|
||||
Tab("Popular", "globe", "/companies")
|
||||
Tab("All", "font", "/companies/all")
|
||||
|
||||
.corner-buttons
|
||||
if user != nil && (user.Role == "editor" || user.Role == "admin")
|
||||
if user.DraftIndex().CompanyID == ""
|
||||
button.action(data-action="newObject", data-trigger="click", data-type="company")
|
||||
Icon("plus")
|
||||
span Add company
|
||||
else
|
||||
a.button.ajax(href="/company/" + user.DraftIndex().CompanyID + "/edit")
|
||||
Icon("pencil")
|
||||
span Edit draft
|
Reference in New Issue
Block a user