Commit a7e8b34531aca9199ebe422aa5f65a4a52c10078

Authored by Antoine Goutenoir
1 parent 85984e42
Exists in master

refactor: rename template more appropriately

flaskr/controllers/main_controller.py
@@ -174,7 +174,7 @@ def estimate(): # register new estimation request, more accurately @@ -174,7 +174,7 @@ def estimate(): # register new estimation request, more accurately
174 form = EstimateForm() 174 form = EstimateForm()
175 175
176 def show_form(): 176 def show_form():
177 - return render_template("request-estimation.html", form=form, models=models) 177 + return render_template("estimation-request.html", form=form, models=models)
178 178
179 if form.validate_on_submit(): 179 if form.validate_on_submit():
180 180
flaskr/templates/request-estimation.html renamed to flaskr/templates/estimation-request.html