31 lines
782 B
Python
31 lines
782 B
Python
from flask import render_template
|
|
|
|
from app import app
|
|
from app.forms import DatasetForm
|
|
from app.processing import process_data
|
|
|
|
|
|
@app.route("/")
|
|
@app.route("/index")
|
|
def index():
|
|
return render_template("index.html", title="Home Page")
|
|
|
|
|
|
@app.route("/data", methods=["GET", "POST"])
|
|
def data():
|
|
form = DatasetForm()
|
|
if form.validate_on_submit():
|
|
table = process_data(form.dataset.data)
|
|
return render_template("visualization.html", title="Visualization", table=table)
|
|
return render_template("data.html", title="Data", form=form)
|
|
|
|
|
|
@app.route("/visualization")
|
|
def visualization():
|
|
return render_template("visualization.html", title="Visualization", table=table)
|
|
|
|
|
|
@app.route("/map")
|
|
def map():
|
|
return render_template("map.html", title="Map")
|