Skip to content

Commit 45aad72

Browse files
committed
Changed the 'View' button on the NomCom email classification page to render the email body within <pre>, and to not offer classification choices, as this encourages a slow workflow, and also seems to have been broken for some time.
- Legacy-Id: 15552
1 parent 15c8ab9 commit 45aad72

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

ietf/templates/nomcom/view_feedback_pending.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,10 @@ <h4 class="modal-title" id="label{{ form.instance.id }}">
132132
</h4>
133133
</div>
134134
<div class="modal-body">
135-
{% decrypt form.instance.comments request year 1 %}
135+
<pre>{% decrypt form.instance.comments request year 1 %}</pre>
136136
</div>
137137
<div class="modal-footer">
138-
{% for choice in form.type.field.choices %}
139-
<input type="radio" name="{{ form.type.html_name }}" value="{{ choice.0 }}" {% if not choice.0 %}checked="checked"{% endif %} title="{{ choice.1 }}">
140-
{% endfor %}
141138
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
142-
<input type="submit" class="btn btn-warning" value="Save feedback" name="end">
143139
</div>
144140
</div>
145141
</div>

0 commit comments

Comments
 (0)