Roundup Tracker - Issues

Message4896

Author shammash
Recipients ber, pcaulagi, shammash
Date 2013-05-19.11:23:37
Message-id <1368962618.0.0.479038074046.issue2550811@psf.upfronthosting.co.za>
In-reply-to
Rendering of the form values in the request also has problems. I've modified the jinja2 template to pre-fill the change note using from values like this:

-          <textarea name="@note" rows="5" class='input-xxlarge' id='change_note'></textarea>
+          <textarea name="@note" rows="5" class='input-xxlarge' id='change_note'>{% if request.form.note %}{{ request.form.note.value }}{% endif %}</textarea>

And when I pass a note containing unicode characters I get the usual UnicodeDecodeError .
History
Date User Action Args
2013-05-19 11:23:38shammashsetmessageid: <1368962618.0.0.479038074046.issue2550811@psf.upfronthosting.co.za>
2013-05-19 11:23:38shammashsetrecipients: + shammash, ber, pcaulagi
2013-05-19 11:23:37shammashlinkissue2550811 messages
2013-05-19 11:23:37shammashcreate