Added button to add companies
This commit is contained in:
@ -1,8 +1,6 @@
|
||||
package companies
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
@ -19,10 +17,6 @@ func Get(ctx *aero.Context) string {
|
||||
return !company.IsDraft
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
return ctx.Error(http.StatusInternalServerError, "Error fetching companies", err)
|
||||
}
|
||||
|
||||
if len(companies) > maxEntries {
|
||||
companies = companies[:maxEntries]
|
||||
}
|
||||
|
@ -0,0 +1,17 @@
|
||||
component Companies(companies []*arn.Company, user *arn.User)
|
||||
h1.page-title Companies
|
||||
|
||||
.music-buttons
|
||||
if user != nil
|
||||
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
|
||||
|
||||
ul
|
||||
each company in companies
|
||||
li= company.Name.English
|
Reference in New Issue
Block a user