summaryrefslogtreecommitdiff
path: root/pages/pages.go
blob: e965bdd13f7f9af36c5025d1b8cac467f6895d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package pages

import (
	"net/http"
)

func Init() Page {
	return simple("index", func(r *http.Request, uid int32) any {
		u, _ := Q.GetUserById(r.Context(), uid)
		return u.Name
	})
}

func Recur() Page {
	return simpleByQuery("recur", Q.GetRecurExpenses)
}

func Categories() Page {
	return simpleByQuery("categories", Q.GetCategoriesOrdered)
}

func NotFound() http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		showTemplate(w, "404", r.RequestURI)
	}
}