]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/question_list/title.html
Migrate to Django 1.6
[osqa.git] / forum / skins / default / templates / question_list / title.html
1 {% load i18n %}
2
3 <div class="headQuestions">
4     {% if searchtag %}
5         {% trans "Found by tags" %}
6     {% else %}
7         {% if searchtitle %}
8             {% if settings.USE_SPHINX_SEARCH %}
9                 {% trans "Search results" %}
10             {% else %}
11                 {% trans "Found by title" %}
12             {% endif %}
13         {% else %}
14             {% if is_unanswered %}
15                 {% trans "Unanswered questions" %}
16             {% else %}
17                 {% if page_title %}
18                     {% trans page_title %}
19                 {% else %}
20                     {% trans "All Questions" %}
21                 {% endif %}
22             {% endif %}
23         {% endif %}
24     {% endif %}
25 </div>