mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-03 23:51:22 -04:00
16 lines
290 B
Python
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'
|
|
)
|