summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/widgets/question_summary.html
blob: 6ab59de5ec8c11c5f860a21ce3b3d196f89a0261 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% from "macros.html" import user_country_flag, tag_list_widget %}
<div class="short-summary{% if extra_class %} {{extra_class}}{% endif %}" id="question-{{question.id}}">
    <div class="counts">
        <div class="views
             {% if thread.view_count == 0 -%}
                no-views
             {% else -%}
                some-views
             {%- endif -%}">
             <span class="item-count">{{thread.view_count|humanize_counter}}</span>
            <div>
            {% trans cnt=thread.view_count %}view{% pluralize %}views{% endtrans %}
            </div>
        </div>
        <div class="answers
                {% if thread.answer_count == 0 -%}
                    no-answers
                {% else -%}
                    {%- if thread.accepted_answer_id -%}  {# INFO: Use _id to not fetch the whole answer post #}
                        accepted
                    {%- else -%}
                        some-answers
                    {%- endif -%}
                {%- endif -%}"> 
            <span 
                class="item-count"
            >{{thread.answer_count|humanize_counter}}{% if thread.accepted_answer_id %}{% endif %}</span>
            <div>
            {% trans cnt=thread.answer_count %}answer{% pluralize %}answers{% endtrans %}
            </div>
        </div>
        <div class="votes 
                    {% if question.score == 0 -%}
                        no-votes
                    {% else -%}
                        some-votes
                    {%- endif -%}">
            <span class="item-count">{{question.score|humanize_counter}}</span>
            <div>
            {% trans cnt=question.score %}vote{% pluralize %}votes{% endtrans %}
            </div>
        </div>
        <div style="clear:both"></div>
        <div class="userinfo">
            <span class="relativetime" title="{{thread.last_activity_at}}">{{ thread.last_activity_at|diff_date }}</span>
            {% if question.is_anonymous %}
                <span class="anonymous">{{ thread.last_activity_by.get_anonymous_name() }}</span>
            {% else %}
                <a href="{% url user_profile thread.last_activity_by.id, thread.last_activity_by.username|slugify %}">{{thread.last_activity_by.username}}</a> {{ user_country_flag(thread.last_activity_by) }}
                {#{user_score_and_badge_summary(thread.last_activity_by)}#}
            {% endif %}
        </div>
    </div>
    <h2><a title="{{question.summary|escape}}" href="{{ question.get_absolute_url(thread=thread) }}">{{thread.get_title(question)|escape}}</a></h2>
    {{ tag_list_widget(thread.get_tag_names(), search_state=search_state) }}
</div>