Convert templates to partials

This commit is contained in:
2021-12-02 15:00:53 +00:00
parent 67f7022b90
commit 77ae9d2dfd
16 changed files with 261 additions and 237 deletions

View File

@ -25,7 +25,7 @@ func (h *Handler) dashboard(c *gin.Context) {
Token: token,
Budgets: budgets,
}
c.HTML(http.StatusOK, "dashboard", d)
c.HTML(http.StatusOK, "dashboard.html", d)
}
type DashboardData struct {