Add routes and templates
This commit is contained in:
@@ -143,3 +143,13 @@ def activity_history():
|
|||||||
@bp.route("/about")
|
@bp.route("/about")
|
||||||
def about():
|
def about():
|
||||||
return render_template("about.html")
|
return render_template("about.html")
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/csp-environment-access")
|
||||||
|
def csp_environment_access():
|
||||||
|
return render_template("csp_environment_access.html")
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/jedi-csp-calculator")
|
||||||
|
def jedi_csp_calculator():
|
||||||
|
return render_template("jedi_csp_calculator.html")
|
||||||
|
1
templates/csp_environment_access.html
Normal file
1
templates/csp_environment_access.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<p>You are now being taken to the Cloud Service Provider's console for this environment!</p>
|
1
templates/jedi_csp_calculator.html
Normal file
1
templates/jedi_csp_calculator.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<p>You are now being taken to the Cloud Service Provider's service and price calculator!</p>
|
Reference in New Issue
Block a user