summaryrefslogtreecommitdiffstats
path: root/askbot/templates/widgets/question_summary.html
blob: 62c97a53ee381385b9e52a84631c6ace918b2780 (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
58
59
{% from "macros.html" import user_country_flag, tag_list_widget, timeago, user_primary_group %}
<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>
        {% set answer_count = thread.get_answer_count(visitor) %}
        <div class="answers
                {% if 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"
            >{{ answer_count|humanize_counter }}{% if thread.accepted_answer_id %}{% endif %}</span>
            <div>
            {{ settings.WORDS_ANSWERS_COUNTABLE_FORMS|py_pluralize(answer_count) }}
            </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">
            {{ timeago(thread.last_activity_at) }}
            {% if question.is_anonymous %}{# todo: here we need to look at the anonymity of the last edit instead #}
                <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|escape}}</a> {{ user_country_flag(thread.last_activity_by) }}
                {% if thread.last_activity_by.get_primary_group() %}
                - {{ user_primary_group(thread.last_activity_by) }}
                {% endif %}
            {% endif %}
        </div>
    </div>
    <h2><a href="{{ question.get_absolute_url(thread=thread) }}">{{thread.get_title()|escape}}</a></h2>
    {{ tag_list_widget(thread.get_tag_names(), search_state=search_state) }}
</div>