Add big numbers to dashboard

A suggestion of what high-level information users might need on the dashboard
page.
This commit is contained in:
Chris Hill-Scott
2015-12-18 16:36:24 +00:00
parent 96c3291600
commit cad5698754
2 changed files with 22 additions and 3 deletions

View File

@@ -8,5 +8,8 @@ from ._jobs import jobs
@main.route("/dashboard")
def dashboard():
return render_template(
'views/dashboard.html', jobs=jobs
'views/dashboard.html',
jobs=jobs,
free_text_messages_remaining=560,
spent_this_month='0.00'
)