mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
18 lines
345 B
Python
18 lines
345 B
Python
from flask import render_template
|
|
from flask_login import login_required
|
|
from app.main import main
|
|
|
|
|
|
from ._jobs import jobs
|
|
|
|
|
|
@main.route("/dashboard")
|
|
@login_required
|
|
def dashboard():
|
|
return render_template(
|
|
'views/dashboard.html',
|
|
jobs=jobs,
|
|
free_text_messages_remaining=560,
|
|
spent_this_month='0.00'
|
|
)
|