@@ -, +, @@ suggestion - Create 2 suggestions - Create an order from one of them - Go to the detail page of the suggestion --- koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -64,7 +64,11 @@ [% IF ( title ) %]
  • Title: - [% title | html %] + [% IF suggestion.biblionumber %] + [% suggestion.title | html %] + [% ELSE %] + [% title | html %] + [% END %]
  • [% END %] [% IF ( author ) %] --