Bug 19291: Make breadcrumbs for OPAC search history consistent with other patron account pages
This patch adds the logged-in patron's name to the search history page's breadcrumb navigation. To test, apply the patch and view the OPAC search history page with no user logged in. The breadcrumbs should read: - Home -> Search history Log in and return to the search history page. The breadcrumbs should read: - Home -> Owen Leonard -> Your search history Signed-off-by: Maryse Simard <maryse.simard@inlibro.com> Followed the test plan and it works. Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> https://bugs.koha-community.org/show_bug.cgi?id=21137 Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
5abcd3312a
commit
ff3987c023
1 changed files with 1 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li>
|
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li>
|
||||||
[% IF ( loggedinusername ) %]
|
[% IF ( loggedinusername ) %]
|
||||||
|
<li><a href="/cgi-bin/koha/opac-user.pl">[% USER_INFO.firstname %] [% USER_INFO.surname %]</a> <span class="divider">›</span></li>
|
||||||
<li><a href="#">Your search history</a></li>
|
<li><a href="#">Your search history</a></li>
|
||||||
[% ELSE %]
|
[% ELSE %]
|
||||||
<li><a href="#">Search history</a></li>
|
<li><a href="#">Search history</a></li>
|
||||||
|
|
Loading…
Reference in a new issue