summaryrefslogtreecommitdiffstats
path: root/templates/questions.html
blob: aa9a38e3f8184e5d9e920957ca546d301a3564d0 (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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
<<<<<<< HEAD:templates/questions.html
{% extends "base.html" %}
<!-- questions.html -->
{% load extra_tags %}
{% load i18n %}
{% load humanize %}
{% load extra_filters %}
{% load smart_if %}
{% block title %}{% spaceless %}{% trans "Questions" %}{% endspaceless %}{% endblock %}
{% block forejs %}
       <script type="text/javascript">
           var tags = {{ tags_autocomplete|safe }};
           $().ready(function(){
               var tab_id = "{{ tab_id }}";
               $("#"+tab_id).attr('className',"on");
               var on_tab = {% if is_unanswered %}'#nav_unanswered'{% else %}'#nav_questions'{% endif %};
               $(on_tab).attr('className','on');
               Hilite.exact = false;
               Hilite.elementid = "listA";
               Hilite.debug_referrer = location.href;
           });
       </script>
       <script type='text/javascript' src='{% href "/content/js/com.cnprog.editor.js" %}'></script>
       <script type='text/javascript' src='{% href "/content/js/com.cnprog.tag_selector.js" %}'></script>
{% endblock %}
{% block content %}
<div class="tabBar">
<<<<<<< HEAD:templates/questions.html
    <div class="headQuestions">{% if searchtag %}{% trans "Found by tags" %}{% else %}{% if searchtitle %}{% trans "Found by title" %}{% else %}{% trans "All questions" %}{% endif %}{% endif %}</div>
=======
    <div class="headQuestions">
        {% if searchtag %}
            {% trans "Found by tags" %}
        {% else %}
            {% if searchtitle %}
                {% if settings.USE_SPHINX_SEARCH %}
                    {% trans "Search results" %}
                {% else %}
                    {% trans "Found by title" %}
                {% endif %}
            {% else %}
                {% if is_unanswered %}
                    {% trans "Unanswered questions" %}
                {% else %}
                    {% trans "All questions" %}
                {% endif %}
            {% endif %}
        {% endif %}
    </div>
>>>>>>> 82d35490db90878f013523c4d1a5ec3af2df8b23:templates/questions.html
    <div class="tabsA">
        <a id="latest" href="?sort=latest" class="off" title="{% trans "most recently asked questions" %}">{% trans "newest" %}</a>
        <a id="active" href="?sort=active" class="off" title="{% trans "most recently updated questions" %}">{% trans "active" %}</a>
        <a id="hottest" href="?sort=hottest" class="off" title="{% trans "hottest questions" %}">{% trans "hottest" %}</a>
        <a id="mostvoted" href="?sort=mostvoted" class="off" title="{% trans "most voted questions" %}">{% trans "most voted" %}</a>    
    </div>
</div>
<div id="listA">
    {% for question in questions.object_list %}
    <div class="qstA"
        {% if request.user.is_authenticated %}
            {% if question.interesting_score > 0 %}
                    style="background:#ffff99;"
            {% else %}
                {% if not request.user.hide_ignored_questions %}
                    {% if question.ignored_score > 0 %}
                    style="background:#f3f3f3;"
                    {% endif %}
                {% endif %}
            {% endif %}
        {% endif %}
    >
        <h2>
            <a href="{{ question.get_absolute_url }}">{{ question.get_question_title }}</a>
        </h2>
        <div class="stat">
            <table>
                <tr>
                    <td><span class="num">{{ question.answer_count|intcomma }}</span> </td>
                    <td><span class="num">{{ question.score|intcomma }}</span> </td>
                    <td><span class="num">{{ question.view_count|cnprog_intword|safe }}</span> </td>
                </tr>  
                <tr>
                    <td><span class="unit">{% trans "answers" %}</span></td>
                    <td><span class="unit">{% trans "votes" %}</span></td>
                    <td><span class="unit">{% trans "views" %}</span></td>
                </tr> 
            </table>
        </div>
        
        <div class="summary">
            {{ question.summary }}...                
        </div>
        
        {% ifequal tab_id 'active'%}
        {% if question.wiki and settings.WIKI_ON %}
        <span class="from wiki">{% trans "community wiki" %}</span>
        <span class="date" title="{{ question.added_at }}">{% diff_date question.added_at %}</span>
        {% else %}
        <div class="from">
            {% comment %}{% gravatar question.last_activity_by 24 %}{% endcomment %}
            <span class="author"><a href="{{ question.last_activity_by.get_profile_url }}">{{ question.last_activity_by }}</a></span>
            <span class="score">{% get_score_badge question.last_activity_by %} </span>
            <span class="date" title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</span>
        </div>
        {% endif %}
        {% else %}
        {% if question.wiki and settings.WIKI_ON %}
        <span class="from wiki">{% trans "community wiki" %}</span>
        <span class="date" title="{{ question.added_at }}">{% diff_date question.added_at %}</span>
        {% else %}
        <div class="from">
            {% comment %}{% gravatar question.author 24 %}{% endcomment %}
            {% if question.last_activity_at != question.added_at %}
                {% if question.author.id != question.last_activity_by.id %}
                    {% trans "Posted:" %}
                    <span class="author"><a href="{{ question.author.get_profile_url }}">{{ question.author }}</a></span>
                    <span class="score">{% get_score_badge question.author %} </span>
                    / {% trans "Updated:" %}
                    <span class="author"><a href="{{ question.last_activity_by.get_profile_url }}">{{ question.last_activity_by }}</a></span>
                    <span class="score">{% get_score_badge question.last_activity_by %} </span>
                    <span class="date" title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</span>
                {% else %}
                    {% trans "Updated:" %}
                    <span class="author"><a href="{{ question.last_activity_by.get_profile_url }}">{{ question.last_activity_by }}</a></span>
                    <span class="score">{% get_score_badge question.last_activity_by %} </span>
                    <span class="date" title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</span>
                {% endif %}
            {% else %}
                {% trans "Posted:" %}
                <span class="author"><a href="{{ question.author.get_profile_url }}">{{ question.author }}</a></span>
                <span class="score">{% get_score_badge question.author %} </span>
                <span class="date" title="{{ question.added_at }}">{% diff_date question.added_at %}</span>
            {% endif %}
        </div>
        {% endif %}
        {% endifequal %}
        
        <div class="tags">
        {% for tag in question.tagname_list %}
        <a href="{% url forum.views.tag tag|urlencode %}" title="{% trans "see questions tagged" %}'{{ tag }}'{% trans "using tags" %}" rel="tag">{{ tag }}</a>
        {% endfor %}
        </div>
	{%trans "Category: "%}<a href="{% url forum.views.category question.category|urlencode %}">{{ question.category}}</a>
    </div>
    {% endfor %}
    {% if searchtitle %}
        {% if questions_count == 0 %}
        <p class="evenMore" style="padding-top:30px;text-align:center;">
            {% trans "Did not find anything?" %}
        {% else %}
        <p class="evenMore" style="padding-left:9px">
            {% trans "Did not find what you were looking for?" %} 
        {% endif %}
        <a href="{% url ask %}">{% trans "Please, post your question!" %}</a>
        </p>
    {% endif %}
</div>
{% endblock %}

{% block tail %}
    <div class="pager">{% cnprog_paginator context %}</div>
    <div class="pagesize">{% cnprog_pagesize context %}</div>
{% endblock %}

{% block sidebar %}
<div class="boxC">
		{% if searchtag %}
<<<<<<< HEAD:templates/questions.html
			{% blocktrans count questions_count as cnt with questions_count|intcomma as q_num and searchtag as tagname %}
			have total {{q_num}} questions tagged {{tagname}}
			{% plural %}
			have total {{q_num}} questions tagged {{tagname}}
			{% endblocktrans %}
		{% else %}
			{% if searchtitle %}
				{% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %}
				have total {{q_num}} questions containing {{searchtitle}}
				{% plural %}
				have total {{q_num}} questions containing {{searchtitle}}
				{% endblocktrans %}
			{% else %}
				{% blocktrans count questions as cnt with questions_count|intcomma as q_num %}
				have total {{q_num}} questions
				{% plural %}
				have total {{q_num}} questions
				{% endblocktrans %}
			{% endif %}
		{% endif %}
        <p>
=======
            {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num and searchtag as tagname %}
            have total {{q_num}} questions tagged {{tagname}}
            {% plural %}
            have total {{q_num}} questions tagged {{tagname}}
            {% endblocktrans %}
		{% else %}
			{% if searchtitle %}
                {% if settings.USE_SPHINX_SEARCH %}
                    {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} questions containing {{searchtitle}} in full text
                    {% plural %}
                    have total {{q_num}} questions containing {{searchtitle}} in full text
                    {% endblocktrans %}
                {% else %}
                    {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} questions containing {{searchtitle}}
                    {% plural %}
                    have total {{q_num}} questions containing {{searchtitle}}
                    {% endblocktrans %}
                {% endif %}
			{% else %}
                {% if is_unanswered %}
                    {% blocktrans count questions as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} unanswered questions
                    {% plural %}
                    have total {{q_num}} unanswered questions
                    {% endblocktrans %}
                {% else %}
                    {% blocktrans count questions as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} questions
                    {% plural %}
                    have total {{q_num}} questions
                    {% endblocktrans %}
                {% endif %}
			{% endif %}
		{% endif %}
        <p class="nomargin">
>>>>>>> 82d35490db90878f013523c4d1a5ec3af2df8b23:templates/questions.html
        {% ifequal tab_id "latest" %}
			{% trans "latest questions info" %}
        {% endifequal %}
        
        {% ifequal tab_id "active" %}
            {% trans "Questions are sorted by the <strong>time of last update</strong>." %} 
			{% trans "Most recently answered ones are shown first." %}
        {% endifequal %}
        
        {% ifequal tab_id "hottest" %}
			{% trans "Questions sorted by <strong>number of responses</strong>." %}
            {% trans "Most answered questions are shown first." %}
        {% endifequal %}
        
        {% ifequal tab_id "mostvoted" %}
			{% trans "Questions are sorted by the <strong>number of votes</strong>." %}
            {% trans "Most voted questions are shown first." %}
        {% endifequal %}
        </p>
</div>
{% if request.user.is_authenticated %} 
{% include "tag_selector.html" %}
{% endif %}
<div class="boxC">
	<h3 class="subtitle">{% trans "Related tags" %}</h3>
    <div class="tags">
        {% for tag in tags %}
<<<<<<< HEAD:templates/questions.html
            <a rel="tag" title="{% trans "see questions tagged" %}'{{ tag.name }}'{% trans "using tags" %}"  href="{% url forum.views.tag tag.name|urlencode %}">{{ tag.name }}</a>
            <span class="tag-number">&#215; {{ tag.used_count|intcomma }}</span>
            <br />
        {% endfor %}
        <br />
=======
            <a rel="tag" title="{% blocktrans with tag.name as tag_name %}see questions tagged '{{ tag_name }}'{% endblocktrans %}"  href="{% url forum.views.tag tag.name|urlencode %}">{{ tag.name }}</a>
            <span class="tag-number">&#215; {{ tag.used_count|intcomma }}</span>
            <br />
        {% endfor %}
>>>>>>> 82d35490db90878f013523c4d1a5ec3af2df8b23:templates/questions.html
    </div>
</div>

{% endblock %}
<!-- end questions.html -->
=======
{% extends "base.html" %}
<!-- questions.html -->
{% load extra_tags %}
{% load i18n %}
{% load humanize %}
{% load extra_filters %}
{% load smart_if %}
{% block title %}{% spaceless %}{% trans "Questions" %}{% endspaceless %}{% endblock %}
{% block forejs %}
       <script type="text/javascript">
           var tags = {{ tags_autocomplete|safe }};
           $().ready(function(){
               var tab_id = "{{ tab_id }}";
               $("#"+tab_id).attr('className',"on");
               var on_tab = {% if is_unanswered %}'#nav_unanswered'{% else %}'#nav_questions'{% endif %};
               $(on_tab).attr('className','on');
               Hilite.exact = false;
               Hilite.elementid = "listA";
               Hilite.debug_referrer = location.href;
           });
       </script>
       <script type='text/javascript' src='{% href "/content/js/com.cnprog.editor.js" %}'></script>
       <script type='text/javascript' src='{% href "/content/js/com.cnprog.tag_selector.js" %}'></script>
{% endblock %}
{% block content %}
<div class="tabBar">
    <div class="headQuestions">
        {% if searchtag %}
            {% trans "Found by tags" %}
        {% else %}
            {% if searchtitle %}
                {% if settings.USE_SPHINX_SEARCH %}
                    {% trans "Search results" %}
                {% else %}
                    {% trans "Found by title" %}
                {% endif %}
            {% else %}
                {% if is_unanswered %}
                    {% trans "Unanswered questions" %}
                {% else %}
                    {% trans "All questions" %}
                {% endif %}
            {% endif %}
        {% endif %}
    </div>
    <div class="tabsA">
        <a id="latest" href="{% if is_search %}{{ search_uri }}&{% else %}?{% endif %}sort=latest" class="off" title="{% trans "most recently asked questions" %}">{% trans "newest" %}</a>
        <a id="active" href="{% if is_search %}{{ search_uri }}&{% else %}?{% endif %}sort=active" class="off" title="{% trans "most recently updated questions" %}">{% trans "active" %}</a>
        <a id="hottest" href="{% if is_search %}{{ search_uri }}&{% else %}?{% endif %}sort=hottest" class="off" title="{% trans "hottest questions" %}">{% trans "hottest" %}</a>
        <a id="mostvoted" href="{% if is_search %}{{ search_uri }}&{% else %}?{% endif %}sort=mostvoted" class="off" title="{% trans "most voted questions" %}">{% trans "most voted" %}</a>    
    </div>
</div>
<div id="listA">
    {% for question in questions.object_list %}
    <div class="qstA"
        {% if request.user.is_authenticated %}
            {% if question.interesting_score > 0 %}
                    style="background:#ffff99;"
            {% else %}
                {% if not request.user.hide_ignored_questions %}
                    {% if question.ignored_score > 0 %}
                    style="background:#f3f3f3;"
                    {% endif %}
                {% endif %}
            {% endif %}
        {% endif %}
    >
        <h2>
            <a href="{{ question.get_absolute_url }}">{{ question.get_question_title }}</a>
        </h2>
        <div class="stat">
            <table>
                <tr>
                    <td><span class="num">{{ question.answer_count|intcomma }}</span> </td>
                    <td><span class="num">{{ question.score|intcomma }}</span> </td>
                    <td><span class="num">{{ question.view_count|cnprog_intword|safe }}</span> </td>
                </tr>  
                <tr>
                    <td><span class="unit">{% trans "answers" %}</span></td>
                    <td><span class="unit">{% trans "votes" %}</span></td>
                    <td><span class="unit">{% trans "views" %}</span></td>
                </tr> 
            </table>
        </div>
        
        <div class="summary">
            {{ question.summary }}...                
        </div>
        
        {% ifequal tab_id 'active'%}
        {% if question.wiki and settings.WIKI_ON %}
        <span class="from wiki">{% trans "community wiki" %}</span>
        <span class="date" title="{{ question.added_at }}">{% diff_date question.added_at %}</span>
        {% else %}
        <div class="from">
            {% comment %}{% gravatar question.last_activity_by 24 %}{% endcomment %}
            <span class="author"><a href="{{ question.last_activity_by.get_profile_url }}">{{ question.last_activity_by }}</a></span>
            <span class="score">{% get_score_badge question.last_activity_by %} </span>
            <span class="date" title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</span>
        </div>
        {% endif %}
        {% else %}
        {% if question.wiki and settings.WIKI_ON %}
        <span class="from wiki">{% trans "community wiki" %}</span>
        <span class="date" title="{{ question.added_at }}">{% diff_date question.added_at %}</span>
        {% else %}
        <div class="from">
            {% comment %}{% gravatar question.author 24 %}{% endcomment %}
            {% if question.last_activity_at != question.added_at %}
                {% if question.author.id != question.last_activity_by.id %}
                    {% trans "Posted:" %}
                    <span class="author"><a href="{{ question.author.get_profile_url }}">{{ question.author }}</a></span>
                    <span class="score">{% get_score_badge question.author %} </span>
                    / {% trans "Updated:" %}
                    <span class="author"><a href="{{ question.last_activity_by.get_profile_url }}">{{ question.last_activity_by }}</a></span>
                    <span class="score">{% get_score_badge question.last_activity_by %} </span>
                    <span class="date" title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</span>
                {% else %}
                    {% trans "Updated:" %}
                    <span class="author"><a href="{{ question.last_activity_by.get_profile_url }}">{{ question.last_activity_by }}</a></span>
                    <span class="score">{% get_score_badge question.last_activity_by %} </span>
                    <span class="date" title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</span>
                {% endif %}
            {% else %}
                {% trans "Posted:" %}
                <span class="author"><a href="{{ question.author.get_profile_url }}">{{ question.author }}</a></span>
                <span class="score">{% get_score_badge question.author %} </span>
                <span class="date" title="{{ question.added_at }}">{% diff_date question.added_at %}</span>
            {% endif %}
        </div>
        {% endif %}
        {% endifequal %}
        
        <div class="tags">
        {% for tag in question.tagname_list %}
        <a href="{% url forum.views.tag tag|urlencode %}" title="{% trans "see questions tagged" %}'{{ tag }}'{% trans "using tags" %}" rel="tag">{{ tag }}</a>
        {% endfor %}
        </div>
    </div>
    {% endfor %}
    {% if searchtitle %}
        {% if questions_count == 0 %}
        <p class="evenMore" style="padding-top:30px;text-align:center;">
            {% trans "Did not find anything?" %}
        {% else %}
        <p class="evenMore" style="padding-left:9px">
            {% trans "Did not find what you were looking for?" %} 
        {% endif %}
        <a href="{% url ask %}">{% trans "Please, post your question!" %}</a>
        </p>
    {% endif %}
</div>
{% endblock %}

{% block tail %}
    <div class="pager">{% cnprog_paginator context %}</div>
    <div class="pagesize">{% cnprog_pagesize context %}</div>
{% endblock %}

{% block sidebar %}
<div class="boxC">
		{% if searchtag %}
            {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num and searchtag as tagname %}
            have total {{q_num}} questions tagged {{tagname}}
            {% plural %}
            have total {{q_num}} questions tagged {{tagname}}
            {% endblocktrans %}
		{% else %}
			{% if searchtitle %}
                {% if settings.USE_SPHINX_SEARCH %}
                    {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} questions containing {{searchtitle}} in full text
                    {% plural %}
                    have total {{q_num}} questions containing {{searchtitle}} in full text
                    {% endblocktrans %}
                {% else %}
                    {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} questions containing {{searchtitle}}
                    {% plural %}
                    have total {{q_num}} questions containing {{searchtitle}}
                    {% endblocktrans %}
                {% endif %}
			{% else %}
                {% if is_unanswered %}
                    {% blocktrans count questions as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} unanswered questions
                    {% plural %}
                    have total {{q_num}} unanswered questions
                    {% endblocktrans %}
                {% else %}
                    {% blocktrans count questions as cnt with questions_count|intcomma as q_num %}
                    have total {{q_num}} questions
                    {% plural %}
                    have total {{q_num}} questions
                    {% endblocktrans %}
                {% endif %}
			{% endif %}
		{% endif %}
        <p class="nomargin">
        {% ifequal tab_id "latest" %}
			{% trans "latest questions info" %}
        {% endifequal %}
        
        {% ifequal tab_id "active" %}
            {% trans "Questions are sorted by the <strong>time of last update</strong>." %} 
			{% trans "Most recently answered ones are shown first." %}
        {% endifequal %}
        
        {% ifequal tab_id "hottest" %}
			{% trans "Questions sorted by <strong>number of responses</strong>." %}
            {% trans "Most answered questions are shown first." %}
        {% endifequal %}
        
        {% ifequal tab_id "mostvoted" %}
			{% trans "Questions are sorted by the <strong>number of votes</strong>." %}
            {% trans "Most voted questions are shown first." %}
        {% endifequal %}
        </p>
</div>
{% if request.user.is_authenticated %} 
{% include "tag_selector.html" %}
{% endif %}
<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 forum.views.tag tag.name|urlencode %}">{{ tag.name }}</a>
            <span class="tag-number">&#215; {{ tag.used_count|intcomma }}</span>
            <br />
        {% endfor %}
    </div>
</div>

{% endblock %}
<!-- end questions.html -->
>>>>>>> evgenyfadeev/master:templates/questions.html