move shops to new page; live vs mock navbar

This commit is contained in:
2026-02-06 16:37:55 -07:00
parent 548f72d9a4
commit e3b2dd3377
11 changed files with 265 additions and 345 deletions
+1 -1
View File
@@ -196,7 +196,7 @@ func (s *accountSubrouter) setOrderOfPlatformOnAccountPage(c *gin.Context) (resp
)
err := param.Path("platform", param.Platform(&platform)).
Form("orderIndex", param.Int(&orderIndex)).
Form("order-index", param.Int(&orderIndex)).
Unmarshal(c)
if err != nil {
return nil, err
+3
View File
@@ -84,6 +84,9 @@ func Routes(
}
return strings.Join(us, " ")
},
"hasPrefix": func(s, prefix string) bool {
return strings.HasPrefix(s, prefix)
},
// arithmetic
"addInt": func(a, b int) int {