summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/question/answer_tab_bar.html
blob: 3e39f7959b130be528c79770d7cd27dec500a870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="tabBar tabBar-answer">
    <h2 id="questionCount">
        {% trans counter=answers|length %}
        {{counter}} Answer
        {% pluralize %}
        {{counter}} Answers
        {% endtrans %}
    </h2>
    <div class="tabsA">
        <span class="label">
        Sort by »
        </span>
        <a id="oldest" href="{{ question.get_absolute_url() }}?sort=oldest#sort-top" 
            title="{% trans %}oldest answers will be shown first{% endtrans %}"
        ><span>{% trans %}oldest answers{% endtrans %}</span></a>
        <a id="latest" href="{{ question.get_absolute_url() }}?sort=latest#sort-top" 
            title="{% trans %}newest answers will be shown first{% endtrans %}"
        ><span>{% trans %}newest answers{% endtrans %}</span></a>
        <a id="votes" href="{{ question.get_absolute_url() }}?sort=votes#sort-top" 
            title="{% trans %}most voted answers will be shown first{% endtrans %}"
        ><span>{% trans %}popular answers{% endtrans %}</span></a>   
    </div>
</div>
<div class="clean"></div>