]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/node/report.html
Make RequestHolder thread-safe
[osqa.git] / forum / skins / default / templates / node / report.html
index c8607bbd30a14999568c0577b655e2be8137cc94..1635d7d6726f4dedbea54610a06c714685ed74e7 100644 (file)
@@ -1,16 +1,14 @@
 {% load i18n %}\r
 \r
-<div class="user-prompt">\r
-    {% trans "Please select a reason bellow or use the text box to input your own reason." %}\r
-    <select class="prompt-examples">\r
-        {% for type in types %}\r
-            <option value="{{ type }}">{{ type }}</option>\r
-        {% endfor %}\r
-    </select>\r
-    <textarea class="prompt-return">{{ types|first }}</textarea>\r
-</div>\r
+{% trans "Please select a reason bellow or use the text box to input your own reason." %}\r
+<select class="prompt-examples">\r
+    {% for type in types %}\r
+        <option value="{{ type }}">{{ type }}</option>\r
+    {% endfor %}\r
+</select>\r
+<textarea name="prompt">{{ types|first }}</textarea>\r
 <script>\r
-$('.user-prompt .prompt-examples').change(function() {\r
-    $('.user-prompt textarea').val($(this).val())            \r
+$('.prompt-examples').change(function() {\r
+    $('textarea[name=prompt]').val($(this).val())            \r
 })\r
 </script>
\ No newline at end of file