]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/report.html
1635d7d6726f4dedbea54610a06c714685ed74e7
[osqa.git] / forum / skins / default / templates / node / report.html
1 {% load i18n %}\r
2 \r
3 {% trans "Please select a reason bellow or use the text box to input your own reason." %}\r
4 <select class="prompt-examples">\r
5     {% for type in types %}\r
6         <option value="{{ type }}">{{ type }}</option>\r
7     {% endfor %}\r
8 </select>\r
9 <textarea name="prompt">{{ types|first }}</textarea>\r
10 <script>\r
11 $('.prompt-examples').change(function() {\r
12     $('textarea[name=prompt]').val($(this).val())            \r
13 })\r
14 </script>