$('#editor').TextAreaResizer();
//toggle preview of editor
- //todo remove copy-paste
+ //todo remove copy-paste
var display = true;
var txt = "[{% trans "hide preview" %}]";
$('#pre-collapse').text(txt);
});
//Tags autocomplete action
- $("#id_tags").autocomplete("{% url matching_tags %}", {
+ $("#id_tags").autocomplete('{% url "matching_tags" %}', {
minChars: 1,
- matchContains: true,
+ matchContains: true,
max: 10,
multiple: true,
multipleSeparator: " ",
scroll: true,
scrollHeight: 300,
-
- /*
- formatItem: function(row, i, max) {
- return row.n + " ("+ row.c +")";
- },
- formatResult: function(row, i, max){
- return row.n;
- }
- */
-
formatItem: function(row, i, max, value) {
return row[1] + " (" + row[2] + ")";
},
}
window.addEventListener('beforeunload', beforeUnload, true);
- var related_questions_url = "{% url related_questions %}";
+ var related_questions_url = '{% url "related_questions" %}';
</script>
<script src="{% media "/media/js/osqa.ask.js" %}" type="text/javascript"></script>
{% endblock %}
{% block content %}
<div id="main-bar" class="headNormal">
- {% trans "Ask a question" %}
+ {% trans "Ask a question" %}
</div>
<div id="main-body" class="ask-body">
<div id="askform">
<form id="fmask" action="" method="post" accept-charset="utf-8">
{% csrf_token %}
- {% if not request.user.is_authenticated %}
+ {% if not request.user.is_authenticated %}
<div class="message">
<span class="strong big">{% trans "You are welcome to start submitting your question anonymously." %}</span>
<p>{% blocktrans %}
{% if not request.user.email_valid_and_can_ask %}
<div class="message">
{% blocktrans %}Remember, your question will not be published until you validate your email.{% endblocktrans %}
- <a href="{% url send_validation_email %}">{% trans "Send me a validation link." %}</a>
+ <a href="{% url "send_validation_email" %}">{% trans "Send me a validation link." %}</a>
</div>
{% endif %}
- {% endif %}
+ {% endif %}
<div class="form-item">
<label for="id_title" ><strong>{{ form.title.label_tag }}:</strong></label> <span class="form-error"></span><br/>
{{ form.title }} {{ form.title.errors }}