Skip to content

Commit

Permalink
Preserve linefeeds (using class pasted) when viewing nomcom feedback …
Browse files Browse the repository at this point in the history
…messages. Commit ready for merge.

 - Legacy-Id: 10220
  • Loading branch information
rjsparks committed Oct 16, 2015
1 parent 13d81dc commit bb51fbe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ietf/settings_sqlitetest.py
Expand Up @@ -36,7 +36,7 @@ def __getitem__(self, item):
},
}

DRAFT_ALIASES_PATH = "/tmp/draft-aliases"
DRAFT_VIRTUAL_PATH = "/tmp/draft-virtual"
GROUP_ALIASES_PATH = "/tmp/group-aliases"
GROUP_VIRTUAL_PATH = "/tmp/group-virtual"
DRAFT_ALIASES_PATH = "./draft-aliases"
DRAFT_VIRTUAL_PATH = "/Users/rjsparks/tmp/draft-virtual"
GROUP_ALIASES_PATH = "./group-aliases"
GROUP_VIRTUAL_PATH = "/Users/rjsparks/tmp/group-virtual"
2 changes: 1 addition & 1 deletion ietf/templates/nomcom/view_feedback_nominee.html
Expand Up @@ -52,7 +52,7 @@ <h2>Feedback about {{ nominee }} </h2>
<dd>{{ feedback.subject }}</dd>
{% endif %}
<dt>Body</dt>
<dd>{% decrypt feedback.comments request year 1 %}</dd>
<dd class="pasted">{% decrypt feedback.comments request year 1 %}</dd>
</dl>
{% endif %}
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion ietf/templates/nomcom/view_feedback_unrelated.html
Expand Up @@ -43,7 +43,7 @@ <h2>Feedback not related to nominees</h2>
<dt>Positions</dt>
<dd>{{ feedback.positions.all|join:"," }}</dd>
<dt>Body</dt>
<dd>{% decrypt feedback.comments request year 1 %}</dd>
<dd class="pasted">{% decrypt feedback.comments request year 1 %}</dd>
</dl>
{% endfor %}
</div>
Expand Down

0 comments on commit bb51fbe

Please sign in to comment.