Bug 23409: (follow-up) Allow HTML in circulation note and add line breaks in OPAC...
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / includes / opac-note.inc
1 [% IF patron_messages.count OR opacnote %]
2     <div class="alert alert-info">
3         <h3>Messages for you</h3>
4         <ul>
5             [% FOREACH message IN patron_messages %]
6                 <li>
7                     <strong>[% message.message | html | html_line_break %]</strong><br>
8                     &nbsp;&nbsp;&nbsp;<i>Written on [% message.message_date | $KohaDates %] by [% Branches.GetName(message.branchcode) | html %]</i>
9                 </li>
10             [% END %]
11
12             [% IF ( opacnote ) %]<li>[% opacnote | html | html_line_break %]</li>[% END %]
13         </ul>
14     </div>
15 [% END %]