コード例 #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)