]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/report.html
Some improvements in cache.
[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 $('.user-prompt .prompt-examples').change(function() {\r
12     $('.user-prompt textarea').val($(this).val())            \r
13 })\r
14 </script>