From: jordan Date: Thu, 14 Apr 2011 13:28:16 +0000 (+0000) Subject: OSQA-435, the matching tags URL is now retrieved with the usage of the {% url %}... X-Git-Tag: live~330 X-Git-Url: https://git.openstreetmap.org./osqa.git/commitdiff_plain/1efc8bf890884fde2c443fe3a4672433400adf0d OSQA-435, the matching tags URL is now retrieved with the usage of the {% url %} template tag. git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@983 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/skins/default/templates/ask.html b/forum/skins/default/templates/ask.html index fa38b76..26f5fae 100644 --- a/forum/skins/default/templates/ask.html +++ b/forum/skins/default/templates/ask.html @@ -33,7 +33,7 @@ }); //Tags autocomplete action - $("#id_tags").autocomplete("/matching_tags/", { + $("#id_tags").autocomplete("{% url matching_tags %}", { minChars: 1, matchContains: true, max: 10, diff --git a/forum/skins/default/templates/question_edit.html b/forum/skins/default/templates/question_edit.html index 7b41cac..4177074 100644 --- a/forum/skins/default/templates/question_edit.html +++ b/forum/skins/default/templates/question_edit.html @@ -26,7 +26,7 @@ }); //Tags autocomplete action - $("#id_tags").autocomplete("/matching_tags/", { + $("#id_tags").autocomplete("{% url matching_tags %}", { matchContains: true, max: 20, multiple: true, diff --git a/forum/skins/default/templates/question_retag.html b/forum/skins/default/templates/question_retag.html index 6ec1313..9050e25 100644 --- a/forum/skins/default/templates/question_retag.html +++ b/forum/skins/default/templates/question_retag.html @@ -9,7 +9,7 @@ $().ready(function(){ $("#nav_questions").attr('className',"on"); //Tags autocomplete action - $("#id_tags").autocomplete("/matching_tags/", { + $("#id_tags").autocomplete("{% url matching_tags %}", { minChars: 1, matchContains: true, max: 20,