예제 #1
0
파일: views.py 프로젝트: hugleecool/flaskbb
def search():
    form = SearchPageForm()

    if form.validate_on_submit():
        result = form.get_results()
        return render_template('forum/search_result.html', form=form, result=result)

    return render_template('forum/search_form.html', form=form)
예제 #2
0
파일: views.py 프로젝트: Aaron1992/flaskbb
def search():
    form = SearchPageForm()

    if form.validate_on_submit():
        result = form.get_results()
        return render_template('forum/search_result.html', form=form,
                               result=result)

    return render_template('forum/search_form.html', form=form)