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