]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/report.html
c8607bbd30a14999568c0577b655e2be8137cc94
[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 class="prompt-return">{{ types|first }}</textarea>\r
11 </div>\r
12 <script>\r
13 $('.user-prompt .prompt-examples').change(function() {\r
14     $('.user-prompt textarea').val($(this).val())            \r
15 })\r
16 </script>