| | 198 | <py:when test="field_name == 'cc'"> |
| | 199 | <py:with vars='newcc=map(lambda s: s.strip(), field.new.split(",")); |
| | 200 | oldcc=map(lambda s: s.strip(), field.old.split(",")); |
| | 201 | added=", ".join([format_author(x) for x in newcc if x and x not in oldcc]); |
| | 202 | removed=", ".join([format_author(x) for x in oldcc if x and x not in newcc])'> |
| | 203 | <py:if test='added'>added: <em>${added}</em></py:if><py:if test='added and removed'>;</py:if> |
| | 204 | <py:if test='removed'>removed: <em>${removed}</em></py:if> |
| | 205 | </py:with> |
| | 206 | </py:when> |