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

(-)a/C4/Output.pm (-8 / +5 lines)
Lines 109-115 sub pagination_bar { Link Here
109
109
110
    # navigation bar useful only if more than one page to display !
110
    # navigation bar useful only if more than one page to display !
111
    if ( $nb_pages > 1 ) {
111
    if ( $nb_pages > 1 ) {
112
        $pagination_bar = '<ul class="pagination">';
112
        $pagination_bar = '<ul class="pagination output">';
113
113
114
        # link to first page?
114
        # link to first page?
115
        if ( $current_page > 1 ) {
115
        if ( $current_page > 1 ) {
Lines 120-126 sub pagination_bar { Link Here
120
                . $url . '1'
120
                . $url . '1'
121
                . $url_suffix
121
                . $url_suffix
122
                . '"rel="start">'
122
                . '"rel="start">'
123
                . '<i class="fa fa-fw fa-angle-double-left"></i> First'
123
                . '<i class="fa fa-fw fa-angle-double-left"></i> '
124
                . '</a></li>';
124
                . '</a></li>';
125
        }
125
        }
126
126
Lines 136-142 sub pagination_bar { Link Here
136
                . $previous
136
                . $previous
137
                . $url_suffix
137
                . $url_suffix
138
                . '" rel="prev">'
138
                . '" rel="prev">'
139
                . '<i class="fa fa-fw fa-angle-left"></i> Previous'
139
                . '<i class="fa fa-fw fa-angle-left"></i> '
140
                . '</a></li>';
140
                . '</a></li>';
141
        }
141
        }
142
142
Lines 189-197 sub pagination_bar { Link Here
189
                . $url
189
                . $url
190
                . $next
190
                . $next
191
                . $url_suffix
191
                . $url_suffix
192
                . '" rel="next">'
192
                . '" rel="next"><i class="fa fa-fw fa-angle-right"></i></a></li>';
193
                . 'Next <i class="fa fa-fw fa-angle-right"></i>'
194
                . '</a></li>';
195
        }
193
        }
196
194
197
        # link to last page?
195
        # link to last page?
Lines 202-209 sub pagination_bar { Link Here
202
                . $nb_pages
200
                . $nb_pages
203
                . $url_suffix
201
                . $url_suffix
204
                . '" rel="last">'
202
                . '" rel="last">'
205
                . 'Last <i class="fa fa-fw fa-angle-double-right"></i>'
203
                . ' <i class="fa fa-fw fa-angle-double-right"></i></a></li>';
206
                . '</a></li>';
207
        }
204
        }
208
205
209
        $pagination_bar .= "\n" . '</ul>';
206
        $pagination_bar .= "\n" . '</ul>';
(-)a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js (-1 / +7 lines)
Lines 431-436 $(document).ready(function () { Link Here
431
    if ($('[data-bs-toggle="tooltip"]').length) {
431
    if ($('[data-bs-toggle="tooltip"]').length) {
432
        $('[data-bs-toggle="tooltip"]').tooltip();
432
        $('[data-bs-toggle="tooltip"]').tooltip();
433
    }
433
    }
434
435
    if ($(".pagination.output").length > 0) {
436
        $(".output.first").append(__("First"));
437
        $(".output.previous").append(__("Previous"));
438
        $(".output.next").prepend(__("Next"));
439
        $(".output.last").prepend(__("Last"));
440
    }
434
});
441
});
435
442
436
function removeLastBorrower() {
443
function removeLastBorrower() {
437
- 

Return to bug 28453