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
10 <textarea>{{ types|first }}</textarea>
\r
11 <div class="prompt-buttons">
\r
12 <button class="prompt-cancel">{% trans "Cancel" %}</button><button class="prompt-submit">{% trans "Send" %}</button>
\r
16 $('.user-prompt .prompt-examples').change(function() {
\r
17 $('.user-prompt textarea').val($(this).val())
\r