]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/views/readers.py
made it so that when you are searching questions the questions tab is highlighted
[osqa.git] / forum / views / readers.py
index 3efb554544ce8c3bbf2706064931c24017872464..b865fbb0dc2b91f9ddef69b6928b66e698c5ac8f 100644 (file)
@@ -97,7 +97,7 @@ def question_list(request, initial, list_description=_('questions'), sort=None,
 
     answer_count = Answer.objects.filter(deleted=None, parent__in=questions).count()   
     answer_description = _("answers")
-    
+
     return {
         "questions" : questions,
         "questions_count" : questions.count(),
@@ -108,6 +108,7 @@ def question_list(request, initial, list_description=_('questions'), sort=None,
         "answer_description": answer_description,
         "base_path" : base_path,
         "page_title" : page_title,
+        "tab" : "questions",
         }
 
 
@@ -234,7 +235,11 @@ def question(request, id, slug):
     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: