Lines 441-447
Link Here
|
441 |
[% END %] |
441 |
[% END %] |
442 |
[% IF ( Koha.Preference('AllowCheckoutNotes') ) %] |
442 |
[% IF ( Koha.Preference('AllowCheckoutNotes') ) %] |
443 |
<td class="note"> |
443 |
<td class="note"> |
444 |
<input type="text" name="note" data-issue_id="[% ISSUE.issue_id | html %]" data-origvalue="[% ISSUE.note | html %]" value="[% ISSUE.note | html %]" readonly> |
444 |
<input type="text" name="note" data-issue_id="[% ISSUE.issue_id | html %]" data-origvalue="[% ISSUE.note | html %]" value="[% ISSUE.note | html %]" maxlength="255" readonly> |
|
|
445 |
<div class="hint">255 characters maximum</div> |
445 |
<button type="button" class="btn btn-primary btn-sm js_submitnote" id="save_[% ISSUE.issue_id | html %]" style="display:none;">Submit note</button> |
446 |
<button type="button" class="btn btn-primary btn-sm js_submitnote" id="save_[% ISSUE.issue_id | html %]" style="display:none;">Submit note</button> |
446 |
<button type="button" class="btn btn-primary btn-sm nonjs_submitnote" href="/cgi-bin/koha/opac-issue-note.pl?issue_id=[% ISSUE.issue_id | url %]">Edit / Create note</button> |
447 |
<button type="button" class="btn btn-primary btn-sm nonjs_submitnote" href="/cgi-bin/koha/opac-issue-note.pl?issue_id=[% ISSUE.issue_id | url %]">Edit / Create note</button> |
447 |
</td> |
448 |
</td> |
448 |
- |
|
|