diff --git a/web/account.html b/web/account.html
index 5fb69c2..c39179c 100644
--- a/web/account.html
+++ b/web/account.html
@@ -13,7 +13,7 @@
{{range .Transactions}}
-
+
{{.Date.Format "02.01.2006"}} |
{{.Account}}
diff --git a/web/budget-sidebar.tpl b/web/budget-sidebar.tpl
index 43876ad..f0ec265 100644
--- a/web/budget-sidebar.tpl
+++ b/web/budget-sidebar.tpl
@@ -36,7 +36,7 @@
+ Add Account
- Settings
+ Budget-Settings
Admin
diff --git a/web/settings.html b/web/settings.html
index 99c4c9e..ca54a5b 100644
--- a/web/settings.html
+++ b/web/settings.html
@@ -1,5 +1,5 @@
{{define "title"}}
- {{.Budget.Name}} - Settings
+ Settings for Budget "{{.Budget.Name}}"
{{end}}
{{template "base" .}}
diff --git a/web/static/css/main.css b/web/static/css/main.css
index 4046749..eb9106f 100644
--- a/web/static/css/main.css
+++ b/web/static/css/main.css
@@ -65,9 +65,13 @@ body {
text-align: right;
}
+/* Highlights */
.negative {
color: #d50000;
}
.zero {
color: #888888;
+}
+.future {
+ background-color: #cccccc;
}
\ No newline at end of file
|