move request review information into a partial
This commit is contained in:
@@ -7,6 +7,7 @@ requests_bp = Blueprint("requests", __name__)
|
||||
from . import index
|
||||
from . import requests_form
|
||||
from . import financial_verification
|
||||
from . import approval
|
||||
|
||||
|
||||
@requests_bp.context_processor
|
||||
|
9
atst/routes/requests/approval.py
Normal file
9
atst/routes/requests/approval.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from flask import render_template
|
||||
|
||||
from . import requests_bp
|
||||
from atst.forms.data import SERVICE_BRANCHES
|
||||
|
||||
|
||||
@requests_bp.route("/request_approval", methods=["GET"])
|
||||
def requests_approval():
|
||||
return render_template("request_approval.html", service_branches=SERVICE_BRANCHES)
|
Reference in New Issue
Block a user