예제 #1
0
파일: views.py 프로젝트: prvn/researchorum
    def get(self, tag):
        if tag is not None:
            print "Query: ", tag
            posts = Post.objects(display_tags__all=[tag])

        return render_template('posts/list.html', posts=posts, query=("#"+str(tag)))
예제 #2
0
파일: views.py 프로젝트: prvn/researchorum
    def get(self, query):
        if query is not None:
            posts = Post.objects(title__icontains=query)

        return render_template('posts/list.html', posts=posts, query=query)