Merge pull request #327 from dod-ccpo/dummy-help-page

Dummy help page
This commit is contained in:
andrewdds
2018-09-25 11:08:56 -04:00
committed by GitHub
14 changed files with 251 additions and 54 deletions

View File

@@ -12,7 +12,12 @@ bp = Blueprint("atst", __name__)
@bp.route("/")
def root():
return render_template("root.html")
return render_template("login.html")
@bp.route("/help")
def helpdocs():
return render_template("help/index.html")
@bp.route("/home")