summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/questions.html
blob: a0a5265b45d44776980897ad7150ed3593708d33 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
{% extends "base.html" %}
<!-- questions.html -->
{% load extra_tags %}
{% load i18n %}
{% load humanize %}
{% load extra_filters %}
{% load smart_if %}
{% load cache %}
{% block title %}{% spaceless %}{% trans "Questions" %}{% endspaceless %}{% endblock %}
{% block forejs %}
       <script type="text/javascript">
           var tags = {{ tags_autocomplete|safe }};
           $().ready(function(){
               var sort_tab_id = "{{ sort }}";
               $("#"+sort_tab_id).attr('className',"on");
               var scope_tab_id = "{{ scope }}";
               $("#"+scope_tab_id).attr('className',"on");
               var on_tab = '#nav_questions';
               $(on_tab).attr('className','on');
               Hilite.exact = false;
               Hilite.elementid = "listA";
               Hilite.debug_referrer = location.href;
           });
       </script>
       <script type='text/javascript' src='{% media  "/media/js/com.cnprog.editor.js" %}'></script>
       <script type='text/javascript' src='{% media  "/media/js/com.cnprog.tag_selector.js" %}'></script>
{% endblock %}
{% block content %}
{% get_current_language as LANGUAGE_CODE %}
{% cache 600 "scope_sort_tabs" search_tags scope sort query context.page context.page_size LANGUAGE_CODE %}
<div class="tabBar">
    <div class="tabsC">
        <span class="label">{% trans "In:" %}</span>
        <a id="all" class="off" href="?scope=all" title="{% trans "see all questions" %}">{% trans "all" %}</a>
        <a id="unanswered" class="off" href="?scope=unanswered&amp;sort=coldest" title="{% trans "see unanswered questions" %}">{% trans "unanswered" %}</a>
        {% if request.user.is_authenticated %} 
        <a id="favorite" class="off" href="?scope=favorite" title="{% trans "see your favorite questions" %}">{% trans "favorite" %}</a>
        {% endif %}
    </div>
    <div class="tabsA">
        <span class="label">{% trans "Sort by:" %}</span>
        {% if sort == "oldest" %}
        <a id="oldest" 
            href="?sort=latest" 
            class="off" 
            title="{% trans "click to see the newest questions" %}">{% trans "oldest" %}</a>
        {% else %}
                {% if sort == "latest" %}
                    <a id="latest" 
                        href="?sort=oldest" 
                        class="off" 
                        title="{% trans "click to see the oldest questions" %}">{% trans "newest" %}</a>
                {% else %}
                    <a id="latest" 
                        href="?sort=latest" 
                        class="off" 
                        title="{% trans "click to see the newest questions" %}">{% trans "newest" %}</a>
                {% endif %}
        {% endif %}

        {% if sort == "inactive" %}
        <a id="inactive" 
            href="?sort=active" 
            class="off" 
            title="{% trans "click to see the most recently updated questions" %}">{% trans "inactive" %}</a>
        {% else %}
            {% if sort == "active" %}
                <a id="active" 
                    href="?sort=inactive" 
                    class="off" 
                    title="{% trans "click to see the least recently updated questions" %}">{% trans "active" %}</a>
            {% else %}
                <a id="active" 
                    href="?sort=active" 
                    class="off" 
                    title="{% trans "click to see the most recently updated questions" %}">{% trans "active" %}</a>
            {% endif %}
        {% endif %}

        {% if sort == "coldest" %}
        <a id="coldest" 
            href="?sort=hottest" 
            class="off" 
            title="{% trans "click to see hottest questions" %}">{% trans "less answers" %}</a>
        {% else %}
            {% if sort == "hottest" %}
                <a id="hottest" 
                    href="?sort=coldest" 
                    class="off" 
                    title="{% trans "click to see coldest questions" %}">{% trans "more answers" %}</a>
            {% else %}
                <a id="hottest" 
                    href="?sort=hottest" 
                    class="off" 
                    title="{% trans "click to see hottest questions" %}">{% trans "more answers" %}</a>
            {% endif %}
        {% endif %}

        {% if sort == "leastvoted" %}
        <a id="leastvoted" 
            href="?sort=mostvoted" 
            class="off" 
            title="{% trans "click to see most voted questions" %}">{% trans "unpopular" %}</a>    
        {% else %}
            {% if sort == "mostvoted" %}
                <a id="mostvoted" 
                    href="?sort=leastvoted" 
                    class="off" 
                    title="{% trans "click to see least voted questions" %}">{% trans "popular" %}</a>    
            {% else %}
                <a id="mostvoted" 
                    href="?sort=mostvoted" 
                    class="off" 
                    title="{% trans "click to see most voted questions" %}">{% trans "popular" %}</a>    
            {% endif %}
        {% endif %}
    </div>
</div>
{% endcache %}
{% if questions_count > 0 %}
    <div style="clear:both">
        <p style="float:right;margin:3px 3px 0 0;">
            (<a style=text-decoration:none;" 
                href="{{settings.APP_URL}}/feeds/rss/"
                title="{% trans "subscribe to the questions feed" %}"
                ><img style="vertical-align:middle;" src="{% media "/media/images/feed-icon-small.png" %}"/> {% trans "rss feed" %}</a>)
        </p>
        <p class="search-result-summary">
        {% if author_name or search_tags or query %}
            {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %}
                {{q_num}} question found
            {% plural %}
                {{q_num}} questions found
            {% endblocktrans %}
        {% else %}
            {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %}{{q_num}} question{% plural %}{{q_num}} questions{% endblocktrans %}
        {% endif %}
        {% joinitems using ', ' %}
            {% if author_name %}
                {% blocktrans %}with {{author_name}}'s contributions{% endblocktrans %}
            {% endif %}
        {% separator %}
            {% if search_tags %}
                {% trans "tagged" %}
                "{{ search_tags|join:"\", \"" }}"
            {% endif %}
        {% endjoinitems %}
        </p>
        {% if author_name or search_tags or query %}
            <p class="search-tips">{% trans "Search tips:" %}
            {% ifmany query search_tags author_name %}
                {% joinitems using ', ' ' or ' %}
                    {% if author_name %}
                    <a href="{% url questions %}?reset_author=true">{% trans "reset author" %}</a>
                    {% endif %}
                {% separator %}
                    {% if search_tags %}
                        <a href="{% url questions %}?reset_tags=true">{% trans "reset tags" %}</a>
                    {% endif %}
                {% separator %}
                    {% ifmany query search_tags author_name %}
                        <a href="{% url questions %}?start_over=true">{% trans "start over" %}</a>
                    {% endifmany %}
                {% endjoinitems %}
            {% else %}
                <a href="{% url questions %}?start_over=true">{% trans "start over" %}</a>
            {% endifmany %}
            {% trans " - to expand, or dig in by adding more tags and revising the query." %}
            </p>
        {% else %}
            <p class="search-tips">{% trans "Search tip:" %} {% trans "add tags and a query to focus your search" %}</p>
        {% endif %}
    </div>
{% endif %}
<div id="listA">
{% get_current_language as LANGUAGE_CODE %}
{% cache 0 questions search_tags scope sort query context.page context.page_size LANGUAGE_CODE %}
    {% comment %}
    {% include "question_list.html" %}
    {% endcomment %}
    {% for question in questions.object_list %}
    <div class="short-summary">
        <div class="counts">
            <div class="votes" 
                style="background:{{settings.COLORS_VOTE_COUNTER_MIN_BG}};color:{{settings.COLORS_VOTE_COUNTER_MIN_FG}}"
                title="{% trans "Please decide if you like this question or not by voting" %}">
                {% spaceless %}
                <div class="item-count">
                    {{question.score|humanize_counter}}
                </div>
                <div>
                {% blocktrans count question.score as cnt %}
                vote
                {% plural %}
                votes
                {% endblocktrans %}
                </div>
                {% endspaceless %}
            </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 %}
            {% if question.answer_accepted %}
            <div class="votes" style="background:{{settings.COLORS_ANSWER_COUNTER_ACCEPTED_BG}};color:{{settings.COLORS_ANSWER_COUNTER_ACCEPTED_FG}}">
            {% else %}
            <div class="votes" style="background:{{settings.COLORS_ANSWER_COUNTER_MIN_BG}};color:{{settings.COLORS_ANSWER_COUNTER_MIN_FG}}">
            {% endif %}
                <div class="item-count">{{question.answer_count|humanize_counter}}</div>
                {% spaceless %}
                <div>
                {% blocktrans count question.answer_count as cnt %}
                answer 
                {% plural %}
                answers 
                {% endblocktrans %}
                </div>
                {% endspaceless %}
            </div>
            <div class="views" style="background:{{settings.COLORS_VIEW_COUNTER_MIN_BG}};color:{{settings.COLORS_VIEW_COUNTER_MIN_FG}}">
                {% spaceless %}
                 <div class="item-count">{{question.view_count|humanize_counter}}</div>
                 <div>
                {% blocktrans count question.view_count as cnt %}
                view
                {% plural %}
                views
                {% endblocktrans %}
                </div>
                {% endspaceless %}
            </div>
        </div>
        <h2><a title="{{question.summary}}" href="{% url question id=question.id %}{{question.title|slugify}}">{{question.title}}</a></h2>
        <div class="userinfo">
            <span class="relativetime" title="{{question.last_activity_at}}">{% diff_date question.last_activity_at %}</span>
            {% if question.last_activity_by %}
            &nbsp;<a href="{% url user_profile question.last_activity_by.id question.last_activity_by.username|slugify %}">{{ question.last_activity_by }}</a>&nbsp;{% get_score_badge question.last_activity_by %}
            {% endif %}
        </div>
        <div class="tags">
            {% for tag in question.tagname_list %}
            <a href="{% url questions %}?tags={{tag|urlencode}}" title="{% blocktrans %}see questions tagged '{{ tag }}'{%endblocktrans %}" rel="tag">{{ tag }}</a>
            {% endfor %}
        </div>
    </div>
    {% endfor %}
{% endcache %}
        {% comment %}todo: fix css here{% endcomment %}
        {% if questions_count == 0 %}
            {% comment %}todo: add tips to widen selection{% endcomment%}
            <p class="evenMore" style="padding-top:30px;text-align:center;">
            {% if scope == "unanswered" %}
                {% trans "There are no unanswered questions here" %}
            {% endif %}
            {% if scope == "favorite" %}
                {% trans "No favorite questions here. " %}
                {% trans "Please start (bookmark) some questions when you visit them" %}
            {% endif %}
            </p>
            {% if query or search_tags or author_name %}
            <p class="evenMore" style="text-align:center">
                {% trans "You can expand your search by " %}
                {% ifmany query search_tags author_name %}
                    {% joinitems using ', ' ' or ' %}
                        {% if author_name %}
                        <a href="{% url questions %}?reset_author=true">{% trans "resetting author" %}</a>
                        {% endif %}
                    {% separator %}
                        {% if search_tags %}
                            <a href="{% url questions %}?reset_tags=true">{% trans "resetting tags" %}</a>
                        {% endif %}
                    {% separator %}
                        {% ifmany query search_tags author_name %}
                            <a href="{% url questions %}?start_over=true">{% trans "starting over" %}</a>
                        {% endifmany %}
                    {% endjoinitems %}
                {% else %}
                    <a href="{% url questions %}?start_over=true">{% trans "starting over" %}</a>
                {% endifmany %}
            </p>
            {% endif %}
            <p class="evenMore" style="text-align:center">
            <a href="{% url ask %}">{% trans "Please always feel free to ask your question!" %}</a>
            </p>
        {% else %}
            <p class="evenMore" style="padding-left:9px">
                {% trans "Did not find what you were looking for?" %} 
                <a href="{% url ask %}">{% trans "Please, post your question!" %}</a>
            </p>
        {% endif %}
</div>
{% endblock %}

    {% block tail %}
            {% if questions_count > 10 %}{%comment%}todo: remove magic number{%endcomment%}
                <div class="pager">{% cnprog_paginator context %}</div>
                <div class="pagesize">{% cnprog_pagesize context %}</div>
            {% endif %}
    {% endblock %}

{% block sidebar %}
    {% if contributors %}
        {% get_current_language as LANGUAGE_CODE %}
        {% cache 600 contributors search_tags scope sort query context.page context.page_size LANGUAGE_CODE %}
        <div class="boxC">
        <h3 class="subtitle">{% trans "Contributors" %}</h3>
        {% for person in contributors %}
            {% gravatar person 48 %}
        {% endfor %}
        </div>
        {% endcache %}
    {% endif %}

    {% if request.user.is_authenticated %} 
        {% include "tag_selector.html" %}
    {% endif %}

    {% if tags %}
        {% get_current_language as LANGUAGE_CODE %}
        {% cache 600 tags search_tags scope sort query context.page context.page_size LANGUAGE_CODE %}
        <div class="boxC">
            <h3 class="subtitle">{% trans "Related tags" %}</h3>
            <div class="tags">
                {% for tag in tags %}
                    <a 
                        rel="tag" 
                        title="{% blocktrans with tag.name as tag_name %}see questions tagged '{{ tag_name }}'{% endblocktrans %}"  
                        href="{% url questions %}?tags={{tag.name|urlencode}}">{{ tag.name }}</a>
                    <span class="tag-number">&#215; {{ tag.used_count|intcomma }}</span>
                    <br />
                {% endfor %}
            </div>
        </div>
        {% endcache %}
    {% endif %}
{% endblock %}
<!-- end questions.html -->