https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42455 Bug ID: 42455 Summary: SIP template fields should be textareas in the editor Initiative type: --- Sponsorship --- status: Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: SIP2 Assignee: koha-bugs@lists.koha-community.org Reporter: kyle@bywatersolutions.com QA Contact: testopia@bugs.koha-community.org Right now all template fields are single line text elements. SIP templates have the potential to be complicated enough to need multiple lines. Even simple templates can benefit from this: [% IF(patron.is_debarred) %]PATRON BLOCKED[% END %] can now be: [%- IF(patron.is_debarred) -%] PATRON BLOCKED [%- END -%] and [% USE date %][% manip = date.manip %][% SET od = manip.UnixDate('14 Days Ago','%Y-%m-%d') %][% patron.checkouts.search({ 'date_due' => { '>' => od }}).count %] can now be [%- USE date -%] [%- manip = date.manip -%] [%- SET od = manip.UnixDate('14 Days Ago','%Y-%m-%d') -%] [% patron.checkouts.search({ 'date_due' => { '>' => od }}).count %] -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.