The display of initials and datestamp in public copy notes is ugly. This
code from Christine Morgan at NOBLE uses a regex to remove the initials
and datesteamp from the display.
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
[% IF copy_info.notes; %]
[% FOREACH note IN copy_info.notes; %]
- <tr><td> </td><td class="copy_note" colspan="4" property="description"><strong>[% note.title | html %]:</strong> [% note.value | html %]</td></tr>
+ <tr><td> </td><td class="copy_note" colspan="4" property="description"><strong>[% note.title | html %]:</strong> [% note.value FILTER remove('\[.*\]') | html %]</td></tr>
[% END %]
[% END %]