042fd50313
Changes to notices tab to make it a full replacement for messages tab. Removes messages tab from patron account. - repairs view of patron address in left column (category description, branch) - shows some explanation, when there are no messages for a borrower - makes the notice an expandable field, a click on the subject will expand the field to show the message content - makes message status and message transport type translatable, by moving the possible values into the template - removes the messaging tab from various menus - removes the files that were associated with the messaging tab - preserves the line breaks in message content to improve readability Also fixes Bug 6593 - Some information missing from the "Notices" tab. Signed-off-by: Liz Rea <lrea@nekls.org> Signed-off-by: Ian Walls <ian.walls@bywatersolutions.com> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
14 lines
1.3 KiB
HTML
14 lines
1.3 KiB
HTML
[% IF ( borrowernumber ) %]
|
|
<div id="menu">
|
|
<ul> [% IF ( circview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrowernumber %]">Check Out</a></li>
|
|
[% IF ( detailview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">Details</a></li>
|
|
[% IF ( CAN_user_updatecharges ) %]
|
|
[% IF ( finesview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% borrowernumber %]">Fines</a></li>
|
|
[% END %]
|
|
[% IF ( intranetreadinghistory ) %][% IF ( readingrecordview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/readingrec.pl?borrowernumber=[% borrowernumber %]">Circulation History</a></li>[% END %]
|
|
[% IF ( CAN_user_parameters ) %][% IF ( logview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/tools/viewlog.pl?do_it=1&modules=MEMBERS&action=MODIFY&object=[% borrowernumber %]">Modification Log</a></li>[% END %]
|
|
[% IF ( EnhancedMessagingPreferences ) %]
|
|
[% END %]
|
|
[% IF ( sentnotices ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber %]">Notices</a></li>
|
|
</ul></div>
|
|
[% END %]
|