summaryrefslogtreecommitdiffstats
path: root/askbot/skins/old/templates/close.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/skins/old/templates/close.html')
-rw-r--r--askbot/skins/old/templates/close.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/askbot/skins/old/templates/close.html b/askbot/skins/old/templates/close.html
deleted file mode 100644
index d8160865..00000000
--- a/askbot/skins/old/templates/close.html
+++ /dev/null
@@ -1,27 +0,0 @@
-{% extends "one_column_body.html" %}
-<!-- template close.html -->
-{% block title %}{% spaceless %}{% trans %}Close question{% endtrans %}{% endspaceless %}{% endblock %}
-{% block content %}
-<h1>{% trans %}Close question{% endtrans %}</h1>
- <p>{% trans %}Close the question{% endtrans %}: <a href="{{ question.get_absolute_url() }}">
- <strong>{{ question.get_question_title() }}</strong></a>
- </p>
- <form id="fmclose" action="{% url close question.id %}" method="post" >{% csrf_token %}
- <p>
- <strong>{% trans %}Reasons{% endtrans %}:</strong>
- {{ form.reason }}
- </p>
- <p>
- <input type="submit" value="{% trans %}OK to close{% endtrans %}" class="submit" />&nbsp;
- <input id="btBack" type="button" class="submit" value="{% trans %}Cancel{% endtrans %}" />
- </p>
- </form>
-{% endblock %}
-{% block endjs %}
- <script type="text/javascript">
- $().ready(function(){
- $('#btBack').bind('click', function(){ history.back(); });
- });
- </script>
-{% endblock %}
-<!-- end template close.html -->