PCv5/app/routes/search.py

9 lines
210 B
Python
Raw Normal View History

2019-02-03 16:20:05 +01:00
from app import app
from app.forms import AdvancedSearchForm
from app.utils.render import render
@app.route('/search')
def search():
form = AdvancedSearchForm()
return render('search.html', form=form)