View | Details | Raw Unified | Return to bug 33365
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/cn_browser.tt (-3 / +7 lines)
Lines 1-6 Link Here
1
[% USE Asset %]
1
[% USE Asset %]
2
[% USE AuthorisedValues %]
2
[% USE AuthorisedValues %]
3
[% USE ItemTypes %]
3
[% USE ItemTypes %]
4
[% USE Koha %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Call number browser &rsaquo; Cataloging &rsaquo; Koha</title>
7
<title>Call number browser &rsaquo; Cataloging &rsaquo; Koha</title>
Lines 51-57 Link Here
51
            <th>Title</th>
52
            <th>Title</th>
52
            <th>Library</th>
53
            <th>Library</th>
53
            <th>Collection</th>
54
            <th>Collection</th>
54
            <th>Item type</th>
55
            [% IF Koha.Preference('item-level_itypes') %]
56
                <th>Item type</th>
57
            [% END %]
55
        </tr></thead>
58
        </tr></thead>
56
        <tbody>
59
        <tbody>
57
    [% FOREACH cn_loo IN cn_loop %]
60
    [% FOREACH cn_loo IN cn_loop %]
Lines 68-74 Link Here
68
        </td>
71
        </td>
69
        <td style="background:[% cn_loo.background | html %];">[% cn_loo.branchname | html %]</td>
72
        <td style="background:[% cn_loo.background | html %];">[% cn_loo.branchname | html %]</td>
70
        <td style="background:[% cn_loo.background | html %];">[% AuthorisedValues.GetByCode( 'CCODE', cn_loo.ccode ) | html %]</td>
73
        <td style="background:[% cn_loo.background | html %];">[% AuthorisedValues.GetByCode( 'CCODE', cn_loo.ccode ) | html %]</td>
71
        <td style="background:[% cn_loo.background | html %];">[% ItemTypes.GetDescription( cn_loo.itype ) | html %]</td>
74
        [% IF Koha.Preference('item-level_itypes') %]
75
            <td style="background:[% cn_loo.background | html %];">[% ItemTypes.GetDescription( cn_loo.itype ) | html %]</td>
76
        [% END %]
72
        </tr>
77
        </tr>
73
    [% END %]
78
    [% END %]
74
        </tbody>
79
        </tbody>
75
- 

Return to bug 33365