added visualisation module
This commit is contained in:
parent
6e0caf989d
commit
85bef9a44d
File diff suppressed because it is too large
Load Diff
|
@ -27,6 +27,11 @@ def about():
|
||||||
"""Render about page."""
|
"""Render about page."""
|
||||||
return render_template('about.html')
|
return render_template('about.html')
|
||||||
|
|
||||||
|
@app.route('/Visualise')
|
||||||
|
def visualise():
|
||||||
|
"""Render visualisation page."""
|
||||||
|
return render_template('visualise.html')
|
||||||
|
|
||||||
|
|
||||||
@app.route('/basic-form', methods=['GET', 'POST'])
|
@app.route('/basic-form', methods=['GET', 'POST'])
|
||||||
def basic_form():
|
def basic_form():
|
||||||
|
|
Loading…
Reference in New Issue