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>
9 <textarea name="prompt">{{ types|first }}</textarea>
11 $('.prompt-examples').change(function() {
12 $('textarea[name=prompt]').val($(this).val())