updated accounts page: display user info and list shops

This commit is contained in:
2026-01-25 01:23:52 -07:00
parent 1c305cd494
commit 2b1cc7af75
17 changed files with 469 additions and 18 deletions
+5
View File
@@ -65,6 +65,11 @@ func Routes(
return accounts.NewPlatform(s)
},
// strings
"lowerCamelCase": func(s string) string {
return strings.ToLower(strings.Join(strings.Split(s, " "), "_"))
},
// arithmetic
"addInt": func(a, b int) int {
return a + b