1 {% extends "base_content.html" %}
 
   6 {% block title %}{% spaceless %}{% trans "Reopen question" %}{% endspaceless %}{% endblock %}
 
   8        <script type="text/javascript">
 
  10             $('#btBack').bind('click', function(){ history.back(); });
 
  15 <div id="main-bar" class="headNormal">
 
  16         {% trans "Reopen question" %}
 
  18 <div id="main-body" style="width:100%">
 
  19     <p>{% trans "Open the previously closed question" %}: <a href="{{ question.get_absolute_url }}"><span class="big">{{ question.headline }}</span></a>
 
  22     <p><strong>{% trans "The question was closed for the following reason " %}"{{ question.get_close_reason_display }}"{% trans "reason - leave blank in english" %} <a href="{{ question.closed_by.get_profile_url }}">{{ question.closed_by.username }}</a> {% trans "on "%} {% diff_date question.closed_at %}<font class="darkred">{% trans "date closed" %}</font>
 
  26     <form id="fmclose" action="{% url reopen question.id %}" method="post" >
 
  28         <div id="" style="padding:20px 0 20px 0">
 
  29             <input type="submit" value="{% trans "Reopen this question" %}" class="submit" />
 
  30             <input id="btBack" type="button" value="{% trans "Cancel" %}"  class="submit"  />
 
  37 <!-- end reopen.html -->