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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-3 / +4 lines)
Lines 54-60 Link Here
54
    [% SET show_itemtype_column = Koha.Preference('AllowHoldItemTypeSelection') %]
54
    [% SET show_itemtype_column = Koha.Preference('AllowHoldItemTypeSelection') %]
55
55
56
    <div id="holdshistory" class="page-section">
56
    <div id="holdshistory" class="page-section">
57
        <h2>Current holds</h2>
57
        <h2 id="current_holds_heading">Current holds</h2>
58
        <p><a href="#past_holds_heading"><i class="fa fa-arrow-down" aria-hidden="true"></i> View past holds</a></p>
58
        [% IF patron.holds.count %]
59
        [% IF patron.holds.count %]
59
            <div id="current_holds_filters" data-table-id="table_holdshistory">
60
            <div id="current_holds_filters" data-table-id="table_holdshistory">
60
                <p>
61
                <p>
Lines 103-109 Link Here
103
            <div class="dialog message">This patron has no current holds.</div>
104
            <div class="dialog message">This patron has no current holds.</div>
104
        [% END %]
105
        [% END %]
105
106
106
        <h2>Historical holds</h2>
107
        <h2 id="past_holds_heading">Past holds</h2>
108
        <p><a href="#current_holds_heading"><i class="fa fa-arrow-up" aria-hidden="true"></i> View current holds</a></p>
107
        [% IF patron.old_holds.count %]
109
        [% IF patron.old_holds.count %]
108
            <div id="old_holds_filters" data-table-id="table_oldholdshistory">
110
            <div id="old_holds_filters" data-table-id="table_oldholdshistory">
109
                <p>
111
                <p>
110
- 

Return to bug 35560