Use TemplateData for dashboard

This commit is contained in:
Jan Bader 2016-12-27 00:47:47 +01:00
parent 1ee88466f2
commit e8574ebd0a

View File

@ -61,7 +61,11 @@ func (h *Handler) dashboard(c *gin.Context) {
return
}
c.HTML(http.StatusOK, "dashboard", token)
d := TemplateData{
Token: token,
budgetService: h.Service,
}
c.HTML(http.StatusOK, "dashboard", d)
}
func (h *Handler) restricted(c *gin.Context) {