summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/users_questions.html
blob: 074bd60cccb0e70f393a290d24cf19cb2d959bf1 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!-- users_questions.html -->
{% load extra_tags %}
{% load extra_filters %}
{% load humanize %}
{% load i18n %}
<div class="user-stats-table">
    {% for question in questions %}
        {% if question.favourite_count %}
            {% if question.favorited_myself %}
                <div class="favorites-count">
                    <img 
                        title="{% blocktrans count question.favorite_count as cnt %}this questions was selected as favorite {{question.favourite_count}} time{% plural %}this questions was selected as favorite {{cnt}} times{% endblocktrans %}"
                        alt="{% trans "thumb-up on" %}"
                        src="{% media  "/images/vote-favorite-on.png" %}"/>
                    <div><b>{{question.favourite_count|intcomma}}</b></div>
                </div>
            {% else %}
                <div class="favorites-count-off">
                    <img 
                        title="{% blocktrans count question.favorite_count as cnt %}this questions was selected as favorite {{question.favourite_count}} time{% plural %}this questions was selected as favorite {{cnt}} times{% endblocktrans %}"
                        alt="{% trans "thumb-up off" %}"
                        src="{% media  "/images/vote-favorite-off.png" %}"/>
                    <div><b>{{question.favourite_count|intcomma}}</b></div>
                </div>
            {% endif %}
        {% else %}
            <div class="favorites-empty"> </div>
        {% endif %}
    <div id="question-summary-{{question.id}}" class="short-summary narrow">
    <div class="counts">
        <div class="votes">
            <span 
                class="item-count"
                style="background:{{settings.COLORS_VOTE_COUNTER_MIN_BG}};color:{{settings.COLORS_VOTE_COUNTER_MIN_FG}}"
            >{{question.score|humanize_counter}}</span>
            <div>
            {% blocktrans count question.score as cnt %}
            vote
            {% plural %}
            votes
            {% endblocktrans %}
            </div>
        </div >
        {% comment %}
        <div {% if question.answer_accepted %}title="{% trans "this answer has been accepted to be correct" %}"{% endif %} class="status {% if question.answer_accepted %}answered-accepted{% endif %} {% ifequal question.answer_count 0 %}unanswered{% endifequal %}{% ifnotequal question.answer_count 0 %}answered{% endifnotequal %}">
        {% endcomment %}
        <div class="votes"> 
            <span 
                class="item-count"
                {% if question.answer_accepted %}
                style="background:{{settings.COLORS_ANSWER_COUNTER_ACCEPTED_BG}};color:{{settings.COLORS_ANSWER_COUNTER_ACCEPTED_FG}}"
                {% else %}
                style="background:{{settings.COLORS_ANSWER_COUNTER_MIN_BG}};color:{{settings.COLORS_ANSWER_COUNTER_MIN_FG}}"
                {% endif %}
            >{{question.answer_count|humanize_counter}}</span>
            <div>
            {% blocktrans count question.answer_count as cnt %}
            answer 
            {% plural %}
            answers 
            {% endblocktrans %}
            </div>
        </div>
        <div class="votes">
             <span class="item-count"
                style="background:{{settings.COLORS_VIEW_COUNTER_MIN_BG}};color:{{settings.COLORS_VIEW_COUNTER_MIN_FG}}"
             >{{question.view_count|humanize_counter}}</span>
            <div>
            {% blocktrans count question.view_count as cnt %}
            view
            {% plural %}
            views
            {% endblocktrans %}
            </div>
        </div>
    </div>
        <h2><a title="{{question.summary}}" href="{% url question id=question.id %}{{question.title|slugify}}">{{question.title}}</a></h2>
        <div class="tags">
            {% convert2tagname_list question %}
            {% for tag in question.tagnames %}
                <!--todo - move trans below to blocktrans -->
                <a href="{% url questions %}?tags={{tag|urlencode}}" title="{% blocktrans %}see questions tagged '{{ tag }}'{% endblocktrans %}" rel="tag">{{ tag }}</a>
            {% endfor %}
        </div>
        <div class="started">
            <span class="relativetime" title="{{question.last_activity_at}}">{% diff_date question.last_activity_at %}</span>
            {% if question.la_username %}
                <a href="{% url users %}{{question.la_user_id}}/{{question.la_username}}">{{question.la_username}}</a> {% get_score_badge_by_details question.la_user_reputation question.la_user_gold question.la_user_silver question.la_user_bronze%}
            {% endif %}
        </div>
    </div>
    <br clear="all"/>
    {% endfor %}
</div>
<!-- end users_questions.html -->