]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/report.html
Closing http://jira.osqa.net/browse/OSQA-224
[osqa.git] / forum / skins / default / templates / node / report.html
1 {% load i18n %}\r
2 \r
3 <div class="user-prompt">\r
4     {% trans "Please select a reason bellow or use the text box to input your own reason." %}\r
5     <select class="prompt-examples">\r
6         {% for type in types %}\r
7             <option value="{{ type }}">{{ type }}</option>\r
8         {% endfor %}\r
9     </select>\r
10     <textarea>{{ types|first }}</textarea>\r
11     <div class="prompt-buttons">\r
12         <button class="prompt-cancel">{% trans "Cancel" %}</button><button class="prompt-submit">{% trans "Send" %}</button>\r
13     </div>\r
14 </div>\r
15 <script>\r
16 $('.user-prompt .prompt-examples').change(function() {\r
17     $('.user-prompt textarea').val($(this).val())            \r
18 })\r
19 </script>