X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/5cf5e47e4d8c78850c6a95b1aee7ff63a8a0a862..24da082f86cbb6dae0d55f66c42e4e2c55ac66d1:/forum/skins/default/templates/question_edit.html diff --git a/forum/skins/default/templates/question_edit.html b/forum/skins/default/templates/question_edit.html index bcc1d48..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, @@ -41,11 +41,11 @@ return row.n; }*/ formatItem: function(row, i, max, value) { - return row[1].split(".")[0] + " (" + row[1].split(".")[1] + ")"; + return row[1] + " (" + row[2] + ")"; }, formatResult: function(row, i, max, value){ - return row[0]; + return row[1]; } }); @@ -54,17 +54,45 @@ $("#select_revision").click(); }); + init = $("textarea#editor")[0].value; + + title = $("input#id_title")[0].value; + body = $("textarea#editor")[0].value; + tag = $("input#id_tags")[0].value; }); + + function submitClicked(e, f) { + if(!(browserTester('chrome') || browserTester('safari'))) { + $("input.submit")[0].disabled=true; + $("input.submit")[1].disabled=true; + } + window.removeEventListener('beforeunload', beforeUnload, true); + if (f) { + f.submit(); + } + } + + function beforeUnload(e) { + if($("input#id_title")[0].value != title || $("textarea#editor")[0].value != body || $("input#id_tags")[0].value != tag) { + return yourWorkWillBeLost(e); + } + } + window.addEventListener('beforeunload', beforeUnload, true); + + var init = ""; + var title = ""; + var body = ""; + var tag = ""; {% endblock %} {% block content %}
- {% trans "Edit question" %} [{% trans "back" %}] + {% block edittype %}{% trans "Edit question" %}{% endblock %} [{% trans "back" %}]
-
+
{% if revision_form.revision.errors %}{{ revision_form.revision.errors.as_ul }}{% endif %}
@@ -88,6 +116,7 @@ {% trans "toggle preview" %} + {% if settings.WIKI_ON %} {{ form.wiki }} {{ form.wiki.label_tag }} @@ -111,9 +140,18 @@
{{ form.summary.help_text }}
+ + {% if form.recaptcha %} +
+ {{ form.recaptcha.errors }} + {{ form.recaptcha }} +
+
+ {% endif %} +
- - + +