Added extra navigation and new pages
This commit is contained in:
18
pages/admin/admin.go
Normal file
18
pages/admin/admin.go
Normal file
@ -0,0 +1,18 @@
|
||||
package admin
|
||||
|
||||
import (
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
"github.com/animenotifier/notify.moe/utils"
|
||||
)
|
||||
|
||||
// Get admin page.
|
||||
func Get(ctx *aero.Context) string {
|
||||
user := utils.GetUser(ctx)
|
||||
|
||||
if user == nil || user.Role != "admin" {
|
||||
return ctx.Redirect("/")
|
||||
}
|
||||
|
||||
return ctx.HTML(components.Admin(user))
|
||||
}
|
6
pages/admin/admin.pixy
Normal file
6
pages/admin/admin.pixy
Normal file
@ -0,0 +1,6 @@
|
||||
component Admin(user *arn.User)
|
||||
h2.page-title Admin
|
||||
table
|
||||
tr
|
||||
td Go version:
|
||||
td= runtime.Version()
|
@ -127,9 +127,6 @@ component Anime(anime *arn.Anime)
|
||||
h3.anime-section-name Tracks
|
||||
p Coming soon.
|
||||
|
||||
h3.anime-section-name Artwork
|
||||
p Coming soon.
|
||||
|
||||
h3.anime-section-name Reviews
|
||||
p Coming soon.
|
||||
|
||||
|
18
pages/settings/settings.go
Normal file
18
pages/settings/settings.go
Normal file
@ -0,0 +1,18 @@
|
||||
package settings
|
||||
|
||||
import (
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
"github.com/animenotifier/notify.moe/utils"
|
||||
)
|
||||
|
||||
// Get user settings page.
|
||||
func Get(ctx *aero.Context) string {
|
||||
user := utils.GetUser(ctx)
|
||||
|
||||
if user == nil {
|
||||
return ctx.Redirect("/")
|
||||
}
|
||||
|
||||
return ctx.HTML(components.Settings(user))
|
||||
}
|
3
pages/settings/settings.pixy
Normal file
3
pages/settings/settings.pixy
Normal file
@ -0,0 +1,3 @@
|
||||
component Settings(user *arn.User)
|
||||
h2.page-title Settings
|
||||
input(type="text", value=user.Nick)
|
Reference in New Issue
Block a user