Add about page and route

This commit is contained in:
Luis Cielak
2018-10-02 11:26:27 -04:00
committed by luisgov
parent fa0a1904c3
commit 164ccd02ed
3 changed files with 6 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ UNPROTECTED_ROUTES = [
"atst.unauthorized",
"atst.helpdocs",
"static",
"atst.about",
]

View File

@@ -121,3 +121,7 @@ def user():
def save_user():
# no op
return redirect(url_for(".home"))
@bp.route("/about")
def about():
return render_template("about.html")