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

(-)a/admin/columns_settings.yml (+3 lines)
Lines 1175-1180 modules: Link Here
1175
    view_holdsqueue:
1175
    view_holdsqueue:
1176
      holds-table:
1176
      holds-table:
1177
        columns:
1177
        columns:
1178
            -
1179
              columnname: holdingbranch
1180
              is_hidden: 1
1178
            -
1181
            -
1179
              columnname: title
1182
              columnname: title
1180
            -
1183
            -
(-)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 89-94 Link Here
89
        <th class="hq-notes">Notes</th>
90
        <th class="hq-notes">Notes</th>
90
    </tr>
91
    </tr>
91
    <tr>
92
    <tr>
93
        <td class="hq-holdingbranch">
94
            <span class="filter_column filter_text">
95
                <input class="text_filter" type="text" placeholder="Holding branch">
96
            </span>
97
        </td>
92
        <td class="hq-title">
98
        <td class="hq-title">
93
            <span class="filter_column filter_text">
99
            <span class="filter_column filter_text">
94
                <input class="text_filter" type="text" placeholder="Title">
100
                <input class="text_filter" type="text" placeholder="Title">
Lines 148-153 Link Here
148
	</thead>
154
	</thead>
149
     <tbody>[% FOREACH itemsloo IN itemsloop %]
155
     <tbody>[% FOREACH itemsloo IN itemsloop %]
150
        <tr>
156
        <tr>
157
            <td class="hq-holdingbranch">[% Branches.GetName( itemsloo.holdingbranch ) | html %]</td>
151
            <td class="hq-title">
158
            <td class="hq-title">
152
                <p>
159
                <p>
153
                    [% INCLUDE 'biblio-title.inc' biblio=itemsloo link = 1 %]
160
                    [% INCLUDE 'biblio-title.inc' biblio=itemsloo link = 1 %]
154
- 

Return to bug 29389