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

(-)a/admin/columns_settings.yml (+3 lines)
Lines 1374-1379 modules: Link Here
1374
      holds-table:
1374
      holds-table:
1375
        default_sort_order: 3
1375
        default_sort_order: 3
1376
        columns:
1376
        columns:
1377
            -
1378
              columnname: holdingbranch
1379
              is_hidden: 1
1377
            -
1380
            -
1378
              columnname: title
1381
              columnname: title
1379
            -
1382
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-1 / +7 lines)
Lines 76-81 Link Here
76
<table id="holdst">
76
<table id="holdst">
77
	<thead>
77
	<thead>
78
    <tr>
78
    <tr>
79
        <th class="hq-holdingbranch">Holdingbranch</th>
79
        <th class="hq-title anti-the">Title</th>
80
        <th class="hq-title anti-the">Title</th>
80
        <th class="hq-collection">Collection</th>
81
        <th class="hq-collection">Collection</th>
81
        <th class="hq-itemtype">Item type</th>
82
        <th class="hq-itemtype">Item type</th>
Lines 90-95 Link Here
90
        <th class="hq-notes">Notes</th>
91
        <th class="hq-notes">Notes</th>
91
    </tr>
92
    </tr>
92
    <tr>
93
    <tr>
94
        <td class="hq-holdingbranch">
95
            <span class="filter_column filter_text">
96
                <input class="text_filter" type="text" placeholder="Holding branch">
97
            </span>
98
        </td>
93
        <td class="hq-title">
99
        <td class="hq-title">
94
            <span class="filter_column filter_text">
100
            <span class="filter_column filter_text">
95
                <input class="text_filter" type="text" placeholder="Title">
101
                <input class="text_filter" type="text" placeholder="Title">
Lines 154-159 Link Here
154
	</thead>
160
	</thead>
155
     <tbody>[% FOREACH itemsloo IN itemsloop %]
161
     <tbody>[% FOREACH itemsloo IN itemsloop %]
156
        <tr>
162
        <tr>
163
            <td class="hq-holdingbranch">[% Branches.GetName( itemsloo.holdingbranch ) | html %]</td>
157
            <td class="hq-title">
164
            <td class="hq-title">
158
                <p>
165
                <p>
159
                    [% INCLUDE 'biblio-title.inc' biblio=itemsloo link = 1 %]
166
                    [% INCLUDE 'biblio-title.inc' biblio=itemsloo link = 1 %]
160
- 

Return to bug 29389