-# encoding:utf-8
+# encoding:utf-8
import datetime
import logging
from urllib import unquote
_('open questions without an accepted answer'),
request.utils.set_sort_method('active'),
None,
- _("Unanswered questions"))
+ _("Unanswered Questions"))
@decorators.render('questions.html', 'questions')
def questions(request):
mark_safe(_('questions tagged <span class="tag">%(tag)s</span>') % {'tag': tag}),
request.utils.set_sort_method('active'),
None,
- mark_safe(_('questions tagged %(tag)s') % {'tag': tag}),
+ mark_safe(_('Questions Tagged With <span class="tag">%(tag)s</span>') % {'tag': tag}),
False)
@decorators.list('questions', QUESTIONS_PAGE_SIZE)
-def question_list(request, initial, list_description=_('questions'), sort=None, base_path=None, page_title=None,
+def question_list(request, initial,
+ list_description=_('questions'),
+ sort=None,
+ base_path=None,
+ page_title=_("All Questions"),
allowIgnoreTags=True):
+
questions = initial.filter_state(deleted=False)
if request.user.is_authenticated() and allowIgnoreTags:
def question_search(request, 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)
+ return question_list(request, initial,
+ _("questions matching '%(keywords)s'") % {'keywords': keywords},
+ False,
+ "%s?t=question&q=%s" % (reverse('search'),django_urlquote(keywords)),
+ _("questions matching '%(keywords)s'") % {'keywords': keywords})
def tags(request):#view showing a listing of available tags - plain list