1 {% extends "base.html" %}
\r
2 <!-- question.html -->
\r
4 {% load extra_tags %}
\r
5 {% load extra_filters %}
\r
6 {% load general_sidebar_tags %}
\r
11 {% block metadescription %}{{question.summary}}{% endblock %}
\r
12 {% block metakeywords %}{{question.tagname_meta_generator}}{% endblock %}
\r
13 {% block title %}{% spaceless %}{{ question.headline }}{% endspaceless %}{% endblock %}
\r
15 <link rel="canonical" href="{{settings.APP_URL}}{{question.get_absolute_url}}" />
\r
16 <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ question.get_absolute_url }}?type=rss">
\r
17 {% if not question.nis.closed %}
\r
18 <script type='text/javascript' src='{% media "/media/js/wmd/showdown.js" %}'></script>
\r
19 <script type='text/javascript' src='{% media "/media/js/wmd/wmd.js" %}'></script>
\r
20 <link rel="stylesheet" type="text/css" href="{% media "/media/js/wmd/wmd.css" %}" />
\r
23 <script type="text/javascript">
\r
24 $().ready(function(){
\r
25 $("#nav_questions").attr('className',"on");
\r
26 var answer_sort_tab = "{{ tab_id }}";
\r
28 if (answer_sort_tab) {
\r
29 $("#" + answer_sort_tab).attr('className',"on");
\r
32 $('#editor').TextAreaResizer();
\r
34 //toggle preview of editor
\r
36 var txt = "[{% trans "hide preview" %}]";
\r
37 $('#pre-collapse').text(txt);
\r
38 $('#pre-collapse').bind('click', function(){
\r
39 txt = display ? "[{% trans "show preview" %}]" : "[{% trans "hide preview" %}]";
\r
41 $('#previewer').toggle();
\r
42 $('#pre-collapse').text(txt);
\r
46 function submitClicked(e) {
\r
47 if(!is_chrome)$("input.submit")[0].disabled=true;
\r
48 window.removeEventListener('beforeunload', beforeUnload, true);
\r
51 function beforeUnload(e) {
\r
52 var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
\r
54 if($("textarea#editor")[0].value != "") {
\r
56 return "You sure you want to leave? Your work will be lost.";
\r
58 yourWorkWillBeLost(e);
\r
63 var commentBoxes = $("textarea.commentBox");
\r
64 for(var index = 0; index < commentBoxes.length; index++) {
\r
65 if(commentBoxes[index].value != "") {
\r
67 return "You sure you want to leave? Your work will be lost.";
\r
69 yourWorkWillBeLost(e);
\r
75 window.addEventListener('beforeunload', beforeUnload, true);
\r
77 var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
\r
81 .comment.not_top_scorer {
\r
84 .comment-form-container {
\r
87 .div.comment-tools {
\r
95 <div class="headNormal">
\r
96 <h1><a href="{{ question.get_absolute_url }}">{{ question.headline }}</a></h1>
\r
98 <div id="main-body" class="">
\r
100 <table style="width:100%;" id="question-table" {% post_classes question %}>
\r
102 <td style="width:30px;vertical-align:top">
\r
103 <div class="vote-buttons">
\r
104 {% vote_buttons question request.user %}
\r
105 {% favorite_mark question request.user %}
\r
109 <div id="item-right">
\r
110 <div class="question-body">
\r
111 {{ question.html|safe }}
\r
113 <div id="question-tags" class="tags-container tags">
\r
114 {% for tag in question.tagname_list %}
\r
115 <a href="{% url tag_questions tag|urlencode %}" class="post-tag"
\r
116 title="{% blocktrans with tag as tagname %}see questions tagged '{{ tagname }}'{% endblocktrans %}" rel="tag">{{ tag }}</a>
\r
119 <div id="question-controls" class="post-controls">
\r
120 {% post_controls question request.user %}
\r
121 {% wiki_symbol request.user question %}
\r
123 <div class="post-update-info-container">
\r
124 {% contributors_info question %}
\r
126 {% comments question request.user %}
\r
132 {% if question.nis.closed %}
\r
133 <div class="question-status" style="margin-bottom:15px">
\r
135 {% blocktrans with question.nstate.closed.extra as close_reason %}The question has been closed for the following reason "{{ close_reason }}" by{% endblocktrans %}
\r
136 <a href="{{ question.nstate.closed.by.get_profile_url }}">{{ question.nstate.closed.by.username }}</a>
\r
137 {% diff_date question.nstate.closed.at %}
\r
143 <div class="tabBar">
\r
144 <a name="sort-top"></a>
\r
145 <div class="headQuestions">
\r
146 {% blocktrans count answers.paginator.count as counter %}One Answer:{% plural %}{{counter}} Answers:{% endblocktrans %}
\r
148 {{ answers.paginator.sort_tabs }}
\r
150 {{ answers.paginator.page_numbers }}
\r
152 {% for answer in answers.paginator.page %}
\r
153 <a name="{{ answer.id }}"></a>
\r
154 <div id="answer-container-{{ answer.id }}" class="answer {% post_classes answer %}">
\r
155 <table style="width:100%;">
\r
157 <td style="width:30px;vertical-align:top">
\r
158 <div class="vote-buttons">
\r
159 {% vote_buttons answer request.user %}
\r
160 {% accept_button answer request.user %}
\r
164 <div class="item-right">
\r
165 <div class="answer-body">
\r
166 {{ answer.html|safe }}
\r
168 <div class="answer-controls post-controls">
\r
169 {% post_controls answer request.user %}
\r
170 {% wiki_symbol request.user answer %}
\r
172 <div class="post-update-info-container">
\r
173 {% contributors_info answer %}
\r
175 {% comments answer request.user %}
\r
182 <div class="paginator-container-left">
\r
183 {{ answers.paginator.page_numbers }}
\r
186 <form id="fmanswer" action="{% url answer question.id %}" method="post">
\r
187 <div style="clear:both">
\r
190 {% if not question.closed %}
\r
191 <div style="padding:10px 0 0 0;">
\r
193 <div class="headNormal">
\r
195 {% trans "Your answer" %}
\r
197 {% trans "Be the first one to answer this question!" %}
\r
203 {% if not request.user.is_authenticated %}
\r
204 <div class="message">{% trans "You can answer anonymously and then login." %}</div>
\r
206 <p class="message">
\r
207 {% ifequal request.user question.author %}
\r
208 {% trans "Answer your own question only to give an answer." %}
\r
210 {% trans "Please only give an answer, no discussions." %}
\r
212 {% if not request.user.email_valid_and_can_answer %}
\r
213 {% blocktrans %}Remember, your answer will not be published until you validate your email.{% endblocktrans %}
\r
214 <a href="{% url send_validation_email %}">{% trans "Send me a validation link." %}</a>
\r
220 <div id="description" class="" >
\r
221 <div id="wmd-button-bar" class="wmd-panel"></div>
\r
223 <div class="preview-toggle">
\r
224 <table width="100%">
\r
227 <span id="pre-collapse"
\r
228 title="{% trans "Toggle the real time Markdown editor preview" %}">
\r
229 {% trans "toggle preview" %}
\r
232 {% if settings.WIKI_ON %}
\r
233 <td style="text-align:right;">
\r
235 <span style="font-weight:normal;cursor:help"
\r
236 title="{{answer.wiki.help_text}}">
\r
237 {{ answer.wiki.label_tag }}
\r
245 {{ answer.text.errors }}
\r
246 <div id="previewer" class="wmd-preview"></div>
\r
248 <p><span class="form-error"></span></p>
\r
249 <input type="submit"
\r
250 {% if user.is_anonymous %}
\r
251 value="{% trans "Login/Signup to Post Your Answer" %}"
\r
253 {% if user == question.author %}
\r
254 value="{% trans "Answer Your Own Question" %}"
\r
256 value="{% trans "Answer the question" %}"
\r
259 class="submit" style="float:left" onclick="submitClicked(event)"/>
\r
266 {% block sidebar %}
\r
267 <div class="boxC" id="subscription_box">
\r
268 {% include "subscription_status.html" %}
\r
270 {% sidebar_upper %}
\r
271 {% cache 60 questions_tags settings.APP_URL question.id %}
\r
274 {% trans "Question tags" %}:
\r
277 {% for tag in question.tags.all %}
\r
278 <a href="{% url tag_questions tag.name|urlencode %}"
\r
279 title="{% trans "see questions tagged"%}'{{tag.name}}'{% trans "using tags" %}"
\r
280 rel="tag">{{ tag.name }}</a> <span class="tag-number">×{{ tag.used_count|intcomma }}</span><br/>
\r
284 {% trans "question asked" %}: <strong title="{{ question.added_at }}">{% diff_date question.added_at %}</strong>
\r
287 {% trans "question was seen" %}: <strong>{{ question.view_count|intcomma }} {% trans "times" %}</strong>
\r
290 {% trans "last updated" %}: <strong title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</strong>
\r
294 {% sidebar_lower %}
\r
296 <h3 class="subtitle">{% trans "Related questions" %}</h3>
\r
297 <div class="questions-related">
\r
299 {% for question in similar_questions %}
\r
301 <a href="{{ question.get_absolute_url }}">{{ question.headline }}</a>
\r
312 <!-- end question.html -->
\r