answer_count = Answer.objects.filter(deleted=None, parent__in=questions).count()
answer_description = _("answers")
-
+
return {
"questions" : questions,
"questions_count" : questions.count(),
"answer_description": answer_description,
"base_path" : base_path,
"page_title" : page_title,
+ "tab" : "questions",
}
else:
return render_to_response("search.html", context_instance=RequestContext(request))
-@decoratable
-def do_question_search(keywords):
- return Question.objects.filter(Q(title__icontains=keywords) | Q(body__icontains=keywords))
-
@decorators.render('questions.html')
def question_search(request, keywords):
- initial = do_question_search(keywords)
+ initial = Question.objects.search(keywords)
return question_list(request, initial, _("questions matching '%(keywords)s'") % {'keywords': keywords},
base_path="%s?t=question&q=%s" % (reverse('search'), django_urlquote(keywords)), sort=False)
if question.deleted and not request.user.can_view_deleted_post(question):
raise Http404
- answer_form = AnswerForm(question)
+ if request.POST:
+ answer_form = AnswerForm(question, request.POST)
+ else:
+ answer_form = AnswerForm(question)
+
answers = request.user.get_visible_answers(question)
if answers is not None: