@@ -, +, @@ corrections - View the purchase suggestions page for a patron whose record has a patron image attached. The image should appear in the left-hand sidebar. - View the page for a patron who has submitted no purchase suggestions. The message should be styled correctly. - The toolbar on the page should look correct and work correctly. --- .../prog/en/modules/members/purchase-suggestions.tt | 10 ++++++---- members/purchase-suggestions.pl | 3 +++ 2 files changed, 9 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt @@ -33,8 +33,8 @@

Purchase suggestions

-
- New purchase suggestion + [% IF suggestions %] @@ -55,7 +55,7 @@

[% IF ( CAN_user_catalogue ) %] - [% s.title |html %] + [% s.title |html %] [% ELSE %] [% s.title |html %] [% END %] @@ -94,7 +94,9 @@ [% ELSE %] - There is no purchase suggestion for this patron. +

+

This patron has not submitted any purchase suggestions

+
[% END %]
--- a/members/purchase-suggestions.pl +++ a/members/purchase-suggestions.pl @@ -51,6 +51,9 @@ $template->param( branchname => GetBranchName( $borrower->{'branchcode'} ), ); +my ($picture, $dberror) = GetPatronImage($borrowernumber); +$template->param( picture => 1 ) if $picture; + my $suggestions = SearchSuggestion( { suggestedby => $borrowernumber } ); $template->param( suggestions => $suggestions ); --