});
//Tags autocomplete action
- $("#id_tags").autocomplete("/matching_tags/", {
+ $("#id_tags").autocomplete("{% url matching_tags %}", {
minChars: 1,
matchContains: true,
max: 10,
{{ form.tags.help_text }}
</p>
- {% if form.captcha %}
+ {% if form.recaptcha %}
<div class="question-captcha" style="float: left">
- {{ form.captcha.errors }}
- {{ form.captcha }}
+ {{ form.recaptcha.errors }}
+ {{ form.recaptcha }}
</div>
<div class="clear"></div>
{% endif %}