You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
689 B
32 lines
689 B
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
|
|
"""
|
|
@version: ??
|
|
@author: liangliangyy
|
|
@license: MIT Licence
|
|
@contact: liangliangyy@gmail.com
|
|
@site: https://www.lylinux.org/
|
|
@software: PyCharm
|
|
@file: forms.py
|
|
@time: 2017/1/7 上午12:36
|
|
"""
|
|
|
|
from haystack.forms import SearchForm
|
|
from django import forms
|
|
from blog.models import Article, Category
|
|
|
|
|
|
class BlogSearchForm(SearchForm):
|
|
querydata = forms.CharField(required=True)
|
|
|
|
def search(self):
|
|
datas = super(BlogSearchForm, self).search()
|
|
if not self.is_valid():
|
|
return self.no_query_found()
|
|
|
|
if self.cleaned_data['querydata']:
|
|
print(self.cleaned_data['querydata'])
|
|
return datas
|