Skip to content

Commit

Permalink
Merge branch 'main' into isort-install
Browse files Browse the repository at this point in the history
  • Loading branch information
colinbowen authored Oct 26, 2023
2 parents b80b9ec + e62b01a commit 30038aa
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions app/main/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
from app.main import bp
from app.main.forms import CookiesForm

from .forms import SearchForm
# from app.data.data import consignment_response, consignment_files_response

from keycloak import KeycloakOpenID

KEYCLOAK_BASE_URI = os.getenv("KEYCLOAK_BASE_URI")
KEYCLOAK_CLIENT_ID = os.getenv("KEYCLOAK_CLIENT_ID")
Expand Down Expand Up @@ -148,9 +150,13 @@ def quick_access():
return render_template("quick-access.html")


@bp.route("/record", methods=["GET"])
def record():
return render_template("record.html")
# @bp.route("/record", methods=["GET"])
# def record():
# return render_template(
# "record.html",
# consignment=consignment_response,
# consignment_files=consignment_files_response,
# )


@bp.route("/all-departments", methods=["GET"])
Expand Down

0 comments on commit 30038aa

Please sign in to comment.