@@ -, +, @@ --- .../prog/en/modules/suggestion/suggestion.tt | 65 ++++++++++++++++++---- 1 file changed, 54 insertions(+), 11 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -210,16 +210,54 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o
Bibliographic information
    -
  1. Title:[% title |html %]
  2. -
  3. Author:[% author |html %]
  4. -
  5. Copyright date:[% copyrightdate |html %]
  6. -
  7. ISBN or ISSN or other standard number:[% isbn |html %]
  8. -
  9. Publisher:[% publishercode |html %]
  10. -
  11. Publication place:[% place |html %]
  12. -
  13. Collection title:[% collectiontitle |html %]
  14. -
  15. Document type: - [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', itemtype, 0 ) %] -
  16. + [% IF ( title ) %] +
  17. + Title: + [% title |html %] +
  18. + [% END %] + [% IF ( author ) %] +
  19. + Author: + [% author |html %] +
  20. + [% END %] + [% IF ( copyrightdate ) %] +
  21. + Copyright date: + [% copyrightdate |html %] +
  22. + [% END %] + [% IF ( isbn ) %] +
  23. + ISBN or ISSN or other standard number: + [% isbn |html %] +
  24. + [% END %] + [% IF ( publishercode ) %] +
  25. + Publisher: + [% publishercode |html %] +
  26. + [% END %] + [% IF ( place ) %] +
  27. + Publication place: + [% place |html %] +
  28. + [% END %] + [% IF ( collectiontitle ) %] +
  29. + Collection title: + [% collectiontitle |html %] +
  30. + [% END %] + [% IF ( itemtype ) %] +
  31. + Document type: + [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', itemtype, 0 ) %] +
  32. + [% END %] [% IF ( patron_reason_loop ) %]
  33. Reason for suggestion: [% FOREACH patron_reason_loo IN patron_reason_loop %] @@ -227,7 +265,12 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o [% END %]
  34. [% END %] -
  35. Notes:[% note |html %]
  36. + [% IF ( note ) %] +
  37. + Notes: + [% note |html %] +
  38. + [% END %]
Suggestion management --