minor cleanup in view
This commit is contained in:
parent
eb17b450e7
commit
d5c58d6167
1 changed files with 4 additions and 3 deletions
|
@ -8,6 +8,7 @@ from .utils import getTemps, avg_air_temp, ann_air_indices, \
|
||||||
avg_air_indices, des_air_indices, communitiesSelect
|
avg_air_indices, des_air_indices, communitiesSelect
|
||||||
from .models import Dataset, DB
|
from .models import Dataset, DB
|
||||||
|
|
||||||
|
|
||||||
@main.route('/', methods=['GET'])
|
@main.route('/', methods=['GET'])
|
||||||
def index():
|
def index():
|
||||||
form = AKIForm()
|
form = AKIForm()
|
||||||
|
@ -42,7 +43,7 @@ def index():
|
||||||
session['avg_indices'] = avg_air_indices(indices)
|
session['avg_indices'] = avg_air_indices(indices)
|
||||||
session['des_indices'] = des_air_indices(indices)
|
session['des_indices'] = des_air_indices(indices)
|
||||||
|
|
||||||
return render_template("main/index.html", form=form)
|
return render_template('main/index.html', form=form)
|
||||||
|
|
||||||
|
|
||||||
@main.route('/', methods=['POST'])
|
@main.route('/', methods=['POST'])
|
||||||
|
@ -64,7 +65,7 @@ def index_submit():
|
||||||
|
|
||||||
@main.route('/datatypes')
|
@main.route('/datatypes')
|
||||||
def datatypes():
|
def datatypes():
|
||||||
return render_template("main/datatypes.html")
|
return render_template('main/datatypes.html')
|
||||||
|
|
||||||
|
|
||||||
@main.route('/reset')
|
@main.route('/reset')
|
||||||
|
@ -83,7 +84,7 @@ def details():
|
||||||
years = arange(int(minyear),
|
years = arange(int(minyear),
|
||||||
int(maxyear)+1).reshape(int(maxyear)-int(minyear) + 1, 1)
|
int(maxyear)+1).reshape(int(maxyear)-int(minyear) + 1, 1)
|
||||||
temps = hstack((years, temps))
|
temps = hstack((years, temps))
|
||||||
return render_template("main/details.html",
|
return render_template('main/details.html',
|
||||||
lat=request.args.get('lat', ''),
|
lat=request.args.get('lat', ''),
|
||||||
lon=request.args.get('lon', ''),
|
lon=request.args.get('lon', ''),
|
||||||
community_name=request.args.get('name', ''),
|
community_name=request.args.get('name', ''),
|
||||||
|
|
Loading…
Add table
Reference in a new issue