Files
notifications-admin/app/main/views/dashboard.py
Chris Hill-Scott cad5698754 Add big numbers to dashboard
A suggestion of what high-level information users might need on the dashboard
page.
2016-01-05 13:31:54 +00:00

16 lines
290 B
Python

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