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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-11 / +10 lines)
Lines 59-81 Link Here
59
            [% IF patron.holds.count %]
59
            [% IF patron.holds.count %]
60
                <div id="current_holds_filters" data-table-id="table_holdshistory">
60
                <div id="current_holds_filters" data-table-id="table_holdshistory">
61
                    <p>
61
                    <p>
62
                        <span class="selected">
62
                        <span class="select_hold_status" id="status_show_all">
63
                            <input id="current_show_all" type="checkbox" checked="checked" class="show_all" />
63
                            <input id="current_show_all" type="checkbox" checked="checked" class="show_all" />
64
                            <label for="current_show_all">Show all</label>
64
                            <label for="current_show_all">Show all</label>
65
                        </span>
65
                        </span>
66
                        <span class="selected">
66
                        <span class="select_hold_status" id="status_show_pending">
67
                            <input id="current_pending_filter" type="checkbox" checked="checked" />
67
                            <input id="current_pending_filter" type="checkbox" checked="checked" />
68
                            <label for="current_pending_filter">Pending</label>
68
                            <label for="current_pending_filter">Pending</label>
69
                        </span>
69
                        </span>
70
                        <span class="selected">
70
                        <span class="select_hold_status" id="status_show_waiting">
71
                            <input id="current_waiting_filter" type="checkbox" checked="checked" />
71
                            <input id="current_waiting_filter" type="checkbox" checked="checked" />
72
                            <label for="current_waiting_filter">Waiting</label>
72
                            <label for="current_waiting_filter">Waiting</label>
73
                        </span>
73
                        </span>
74
                        <span class="selected">
74
                        <span class="select_hold_status" id="status_show_processing">
75
                            <input id="current_processing_filter" type="checkbox" checked="checked" />
75
                            <input id="current_processing_filter" type="checkbox" checked="checked" />
76
                            <label for="current_processing_filter">Processing</label>
76
                            <label for="current_processing_filter">Processing</label>
77
                        </span>
77
                        </span>
78
                        <span class="selected">
78
                        <span class="select_hold_status" id="status_show_intransit">
79
                            <input id="current_transit_filter" type="checkbox" checked="checked" />
79
                            <input id="current_transit_filter" type="checkbox" checked="checked" />
80
                            <label for="current_transit_filter">In transit</label>
80
                            <label for="current_transit_filter">In transit</label>
81
                        </span>
81
                        </span>
Lines 101-107 Link Here
101
                    </thead>
101
                    </thead>
102
                </table>
102
                </table>
103
            [% ELSE %]
103
            [% ELSE %]
104
                <div class="dialog message">This patron has no current holds.</div>
104
                <div class="alert alert-info">This patron has no current holds.</div>
105
            [% END %]
105
            [% END %]
106
106
107
            <h2 id="past_holds_heading">Past holds</h2>
107
            <h2 id="past_holds_heading">Past holds</h2>
Lines 111-125 Link Here
111
            [% IF patron.old_holds.count %]
111
            [% IF patron.old_holds.count %]
112
                <div id="old_holds_filters" data-table-id="table_oldholdshistory">
112
                <div id="old_holds_filters" data-table-id="table_oldholdshistory">
113
                    <p>
113
                    <p>
114
                        <span class="selected">
114
                        <span class="select_hold_status" id="status_show_all_old">
115
                            <input id="old_show_all" type="checkbox" checked="checked" class="show_all" />
115
                            <input id="old_show_all" type="checkbox" checked="checked" class="show_all" />
116
                            <label for="old_show_all">Show all</label>
116
                            <label for="old_show_all">Show all</label>
117
                        </span>
117
                        </span>
118
                        <span class="selected">
118
                        <span class="select_hold_status" id="status_show_fulfilled">
119
                            <input id="old_fulfilled_filter" type="checkbox" checked="checked" />
119
                            <input id="old_fulfilled_filter" type="checkbox" checked="checked" />
120
                            <label for="old_fulfilled_filter">Fulfilled</label>
120
                            <label for="old_fulfilled_filter">Fulfilled</label>
121
                        </span>
121
                        </span>
122
                        <span class="selected">
122
                        <span class="select_hold_status" id="status_show_cancelled">
123
                            <input id="old_cancelled_filter" type="checkbox" checked="checked" />
123
                            <input id="old_cancelled_filter" type="checkbox" checked="checked" />
124
                            <label for="old_cancelled_filter">Cancelled</label>
124
                            <label for="old_cancelled_filter">Cancelled</label>
125
                        </span>
125
                        </span>
Lines 145-151 Link Here
145
                    </thead>
145
                    </thead>
146
                </table>
146
                </table>
147
            [% ELSE %]
147
            [% ELSE %]
148
                <div class="dialog message">This patron has no historical holds.</div>
148
                <div class="alert alert-info">This patron has no historical holds.</div>
149
            [% END %]
149
            [% END %]
150
        </div>
150
        </div>
151
    [% END %]
151
    [% END %]
152
- 

Return to bug 35560