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(!(browserTester('chrome') || browserTester('safari'))) {
\r 
  48                 $("input.submit")[0].disabled=true;
\r 
  50             window.removeEventListener('beforeunload', beforeUnload, true);
\r 
  53         function beforeUnload(e) {
\r 
  55             if($("textarea#editor")[0].value != "") {
\r 
  56                 return yourWorkWillBeLost(e);
\r 
  59             var commentBoxes = $("textarea.commentBox");
\r 
  60             for(var index = 0; index < commentBoxes.length; index++) {
\r 
  61                 if(commentBoxes[index].value != "") {
\r 
  62                     return yourWorkWillBeLost(e);
\r 
  66         window.addEventListener('beforeunload', beforeUnload, true);
\r 
  70                 .comment.not_top_scorer {
\r 
  73                 .comment-form-container {
\r 
  76                 .div.comment-tools {
\r 
  84 <div class="headNormal">
\r 
  85     <h1><a href="{{ question.get_absolute_url }}">{{ question.headline }}</a></h1>
\r 
  87 <div id="main-body" class="">
\r 
  89             <table style="width:100%;" id="question-table" {% post_classes question %}>
\r 
  91                     <td style="width:30px;vertical-align:top">
\r 
  92                         <div class="vote-buttons">
\r 
  93                             {% vote_buttons question request.user %}
\r 
  94                             {% favorite_mark question request.user %}                            
\r 
  98                         <div id="item-right">
\r 
  99                             <div class="question-body">
\r 
 100                                 {{ question.html|safe }}
\r 
 102                             <div id="question-tags" class="tags-container tags">
\r 
 103                                 {% for tag in question.tagname_list %}
\r 
 104                                     <a href="{% url tag_questions tag|urlencode %}" class="post-tag"
\r 
 105                                         title="{% blocktrans with tag as tagname %}see questions tagged '{{ tagname }}'{% endblocktrans %}" rel="tag">{{ tag }}</a>
\r 
 108                             <div id="question-controls" class="post-controls">                            
\r 
 109                                 {% post_controls question request.user %}
\r 
 110                                 {% wiki_symbol request.user question %}
\r 
 112                             <div class="post-update-info-container">
\r 
 113                                     {% contributors_info question %}
\r 
 115                             {% comments question request.user %}
\r 
 121             {% if question.nis.closed %}
\r 
 122             <div class="question-status" style="margin-bottom:15px">
\r 
 124                 {% blocktrans with question.nstate.closed.extra as close_reason %}The question has been closed for the following reason "{{ close_reason }}" by{% endblocktrans %}
\r 
 125                 <a href="{{ question.nstate.closed.by.get_profile_url }}">{{ question.nstate.closed.by.username }}</a>
\r 
 126                  {% diff_date question.nstate.closed.at %}
\r 
 132                 <div class="tabBar">
\r 
 133                     <a name="sort-top"></a>
\r 
 134                     <div class="headQuestions">
\r 
 135                     {% blocktrans count answers.paginator.count as counter %}One Answer:{% plural %}{{counter}} Answers:{% endblocktrans %}
\r 
 137                     {{ answers.paginator.sort_tabs }}
\r 
 139                 {{ answers.paginator.page_numbers }}
\r 
 141                 {% for answer in answers.paginator.page %}
\r 
 142                     <a name="{{ answer.id }}"></a>
\r 
 143                     <div id="answer-container-{{ answer.id }}" class="answer {% post_classes answer %}">
\r 
 144                         <table style="width:100%;">
\r 
 146                                 <td style="width:30px;vertical-align:top">
\r 
 147                                     <div class="vote-buttons">
\r 
 148                                         {% vote_buttons answer request.user %}
\r 
 149                                         {% accept_button answer request.user %}
\r 
 153                                     <div class="item-right">
\r 
 154                                         <div class="answer-body">
\r 
 155                                             {{ answer.html|safe }}
\r 
 157                                         <div class="answer-controls post-controls">
\r 
 158                                             {% post_controls answer request.user %}
\r 
 159                                             {% wiki_symbol request.user answer %}
\r 
 161                                         <div class="post-update-info-container">
\r 
 162                                             {% contributors_info answer %}
\r 
 164                                         {% comments answer request.user %}
\r 
 171                 <div class="paginator-container-left">
\r 
 172                     {{ answers.paginator.page_numbers }}
\r 
 175         <form id="fmanswer" action="{% url answer question.id %}" method="post">
\r 
 176             <div style="clear:both">
\r 
 179             {% if not question.closed %}
\r 
 180                 <div style="padding:10px 0 0 0;">
\r 
 182                     <div class="headNormal">
\r 
 184                             {% trans "Your answer" %}
\r 
 186                             {% trans "Be the first one to answer this question!" %}
\r 
 192                 {% if not request.user.is_authenticated %}
\r 
 193                     <div class="message">{% trans "You can answer anonymously and then login." %}</div>
\r 
 195                     <p class="message">
\r 
 196                         {% ifequal request.user question.author  %}
\r 
 197                             {% trans "Answer your own question only to give an answer." %}
\r 
 199                             {% trans "Please only give an answer, no discussions." %}
\r 
 201                         {% if not request.user.email_valid_and_can_answer %}
\r 
 202                             {% blocktrans %}Remember, your answer will not be published until you validate your email.{% endblocktrans %}
\r 
 203                             <a href="{% url send_validation_email %}">{% trans "Send me a validation link." %}</a>
\r 
 209                 <div id="description" class="" >
\r 
 210                     <div id="wmd-button-bar" class="wmd-panel"></div>
\r 
 212                     <div class="preview-toggle">
\r 
 213                         <table width="100%">
\r 
 216                                     <span id="pre-collapse" 
\r 
 217                                         title="{% trans "Toggle the real time Markdown editor preview" %}">
\r 
 218                                             {% trans "toggle preview" %}
\r 
 221                                 {% if settings.WIKI_ON %}
\r 
 222                                 <td style="text-align:right;">
\r 
 224                                     <span style="font-weight:normal;cursor:help" 
\r 
 225                                         title="{{answer.wiki.help_text}}">
\r 
 226                                             {{ answer.wiki.label_tag }} 
\r 
 234                     {{ answer.text.errors }}
\r 
 235                     <div id="previewer" class="wmd-preview"></div>                    
\r 
 237                 <p><span class="form-error"></span></p>
\r 
 238                 <input type="submit"
\r 
 239                     {% if user.is_anonymous %}
\r 
 240                         value="{% trans "Login/Signup to Post Your Answer" %}" 
\r 
 242                         {% if user == question.author %}
\r 
 243                         value="{% trans "Answer Your Own Question" %}" 
\r 
 245                         value="{% trans "Answer the question" %}" 
\r 
 248                     class="submit" style="float:left" onclick="submitClicked(event)"/>
\r 
 255 {% block sidebar %}
\r 
 256 <div class="boxC" id="subscription_box">
\r 
 257     {% include "subscription_status.html" %}
\r 
 259 {% sidebar_upper %}
\r 
 260 {% cache 60 questions_tags settings.APP_URL question.id %}
\r 
 263                 {% trans "Question tags" %}:
\r 
 266         {% for tag in question.tags.all %}
\r 
 267                 <a href="{% url tag_questions tag.name|urlencode %}" 
\r 
 268                         title="{% trans "see questions tagged"%}'{{tag.name}}'{% trans "using tags" %}" 
\r 
 269                         rel="tag">{{ tag.name }}</a> <span class="tag-number">×{{ tag.used_count|intcomma }}</span><br/>
\r 
 273         {% trans "question asked" %}: <strong title="{{ question.added_at }}">{% diff_date question.added_at %}</strong>
\r 
 276         {% trans "question was seen" %}: <strong>{{ question.view_count|intcomma }} {% trans "times" %}</strong>
\r 
 279         {% trans "last updated" %}: <strong title="{{ question.last_activity_at }}">{% diff_date question.last_activity_at %}</strong>
\r 
 283 {% sidebar_lower %}
\r 
 285     <h3 class="subtitle">{% trans "Related questions" %}</h3>
\r 
 286     <div class="questions-related">
\r 
 288         {% for question in similar_questions %}
\r 
 290             <a href="{{ question.get_absolute_url }}">{{ question.headline }}</a>
\r 
 301 <!-- end question.html -->
\r