Files
notifications-admin/app/main/views/dashboard.py

18 lines
345 B
Python
Raw Normal View History

from flask import render_template
2016-01-06 16:40:38 +00:00
from flask_login import login_required
from app.main import main
2016-01-06 16:40:38 +00:00
from ._jobs import jobs
@main.route("/dashboard")
2016-01-06 16:40:38 +00:00
@login_required
def dashboard():
return render_template(
'views/dashboard.html',
jobs=jobs,
free_text_messages_remaining=560,
spent_this_month='0.00'
)