@@ -, +, @@ --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt | 5 +++++ 1 file changed, 5 insertions(+) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt @@ -1,5 +1,6 @@ [% USE Koha %] [% USE AuthorisedValues %] +[% USE KohaDates %] [% INCLUDE 'doc-head-open.inc' %] [% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › [% IF ( op_add ) %]Enter a new purchase suggestion[% END %] @@ -161,6 +162,7 @@ <tr> [% IF ( loggedinusername ) %]<th> </th>[% END %] <th>Summary</th> + <th>Suggested on</th> <th>Note</th> [% IF Koha.Preference( 'OPACViewOthersSuggestions' ) == 1 %]<th>Suggested for</th>[% END %] [% IF Koha.Preference( 'OpacSuggestionManagedBy' ) %]<th>Managed by</th>[% END %] @@ -188,6 +190,9 @@ </p> </td> <td> + [% IF ( suggestions_loo.suggesteddate ) %][% suggestions_loo.suggesteddate |$KohaDates %][% END %] + </td> + <td> [% IF ( suggestions_loo.note ) %] <span class="tdlabel">Note: </span> [% suggestions_loo.note |html %] --