Browse Source

Bug 28119: Use full description in layout type selection

This patch changes the template for editing label layout so that a full
description of label types is shown to the user rather than brief names.

To test, apply the patch and go to Tools -> Label creator -> New ->
Layout.

- On the "Choose layout type" line you should see selections with full
  descriptions, e.g. "Only the barcode is printed."
- Choose a layout type and save the layout. Confirm that your choice was
  saved correctly.

Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Bug 28119: (follow-up) Remove unnecessary punctuation

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Owen Leonard 2 years ago
committed by Jonathan Druart
parent
commit
1bb9b8b551
  1. 18
      koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt

18
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt

@ -1,14 +1,14 @@
[% USE raw %]
[% SET footerjs = 1 %]
[% BLOCK translate_label_types %]
[% SWITCH type %]
[% CASE 'BIB' %]Biblio
[% CASE 'BARBIB' %]Barcode/Biblio
[% CASE 'BIBBAR' %]Biblio/Barcode
[% CASE 'ALT' %]Alternating
[% CASE 'BAR' %]Barcode
[% END %]
[% END %]
[%- BLOCK translate_label_types -%]
[%- SWITCH type -%]
[%- CASE 'BIB' -%] Only the bibliographic data is printed
[%- CASE 'BARBIB'-%] Barcode proceeds bibliographic data
[%- CASE 'BIBBAR'-%] Bibliographic data proceeds barcode
[%- CASE 'ALT' -%] Barcode and bibliographic data are printed on alternating labels
[%- CASE 'BAR' -%] Only the barcode is printed
[%- END -%]
[%- END -%]
[% INCLUDE 'doc-head-open.inc' %]
<title>[% IF ( layout_id ) %]Edit label layout [% layout_id | html %] [% ELSE %] New label layout [% END %] &rsaquo; Layouts &rsaquo; Label creator &rsaquo; Tools &rsaquo; Koha</title>
[% INCLUDE 'doc-head-close.inc' %]

Loading…
Cancel
Save