https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40105
Brendan Lawlor <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #7 from Brendan Lawlor <[email protected]> --- This works as described. I'm only failing QA because on the last step when you view the request the note renders as an input, which implies it's editable when it's not. It should just need a small change on opac-illrequests.tt so that it's not an input when you are viewing a request that's already created. Something like this on line 209: <label for="notesopac">Notes:</label> - [% IF !request.completed %] + [% IF !request.completed && !request.illrequest_id %] <textarea id="notesopac" name="notesopac" rows="5" cols="50">[% request.notesopac | html %]</textarea> [% ELSE %] [% request.notesopac | html %] [% END %] -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
