View | Details | Raw Unified | Return to bug 18591
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-6 / +5 lines)
Lines 607-620 Link Here
607
607
608
                    <div id="ill-view-panel" class="panel panel-default">
608
                    <div id="ill-view-panel" class="panel panel-default">
609
                        <div class="panel-heading">
609
                        <div class="panel-heading">
610
                            <h3>[% request.illcomments.count %] comments</h3>
610
                            <h3>[% request.illcomments.count | html %] comments</h3>
611
                        </div>
611
                        </div>
612
                        <div class="panel-body">
612
                        <div class="panel-body">
613
                            [% IF request.illcomments.count && request.illcomments.count > 0 %]
613
                            [% IF request.illcomments.count && request.illcomments.count > 0 %]
614
                                [% FOREACH comment IN request.illcomments %]
614
                                [% FOREACH comment IN request.illcomments %]
615
                                    <div class="rows comment_[% comment.patron.categorycode %]">
615
                                    <div class="rows comment_[% comment.patron.categorycode | html %]">
616
                                    <h5>Comment by:
616
                                    <h5>Comment by:
617
                                    <a href="[% borrowerlink %]" title="View borrower details">
617
                                    <a href="[% borrowerlink | html %]" title="View borrower details">
618
                                    [% comment.patron.firstname _ " " _ comment.patron.surname _ " [" _ comment.patron.cardnumber _ "]" | html %]</a>
618
                                    [% comment.patron.firstname _ " " _ comment.patron.surname _ " [" _ comment.patron.cardnumber _ "]" | html %]</a>
619
                                    [% comment.timestamp | $KohaDates with_hours => 1 %]</h5>
619
                                    [% comment.timestamp | $KohaDates with_hours => 1 %]</h5>
620
                                    <p>[% comment.comment | html %]</p>
620
                                    <p>[% comment.comment | html %]</p>
Lines 626-633 Link Here
626
                                    <div id="addcomment" class="content_hidden">
626
                                    <div id="addcomment" class="content_hidden">
627
                                        <form class="validated" method="post" action="/cgi-bin/koha/ill/ill-requests.pl">
627
                                        <form class="validated" method="post" action="/cgi-bin/koha/ill/ill-requests.pl">
628
                                            <input type="hidden" value="save_comment" name="method">
628
                                            <input type="hidden" value="save_comment" name="method">
629
                                            <input type="hidden" value="[% csrf_token %]" name="csrf_token">
629
                                            <input type="hidden" value="[% csrf_token | html %]" name="csrf_token">
630
                                            <input type="hidden" value="[% request.illrequest_id %]" name="illrequest_id">
630
                                            <input type="hidden" value="[% request.illrequest_id | html %]" name="illrequest_id">
631
                                            <fieldset class="rows">
631
                                            <fieldset class="rows">
632
                                                <ol>
632
                                                <ol>
633
                                                    <li>
633
                                                    <li>
634
- 

Return to bug 18591