summaryrefslogtreecommitdiffstats
path: root/askbot/templates/question/answer_tab_bar.html
blob: bebf68b88ef5b6088fa532960752d656d2d82398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="tabBar tabBar-answer">
    <h2 id="questionCount">
        {% trans counter=answer_count %}
            {{counter}} Answer
            {% pluralize %}
            {{counter}} Answers
        {% endtrans %}
    </h2>
    <div class="tabsA">
                    <span class="label">
                    {% trans %}Sort by »{% endtrans %}
                    </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{% 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{% 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 %}most voted{% endtrans %}</span></a>
    </div>
</div>