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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-holdshistory.tt (-7 / +14 lines)
Lines 38-48 Link Here
38
[% INCLUDE 'masthead.inc' %]
38
[% INCLUDE 'masthead.inc' %]
39
39
40
<div class="main">
40
<div class="main">
41
    <ul class="breadcrumb">
41
    <nav aria-label="breadcrumb">
42
        <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
42
        <ul class="breadcrumb">
43
        <li><a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> <span class="divider">&rsaquo;</span></li>
43
            <li class="breadcrumb-item">
44
        <li><a href="#">Your holds history</a></li>
44
                <a href="/cgi-bin/koha/opac-main.pl">Home</a>
45
    </ul>
45
            </li>
46
            <li class="breadcrumb-item">
47
                <a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a>
48
            </li>
49
            <li class="breadcrumb-item" aria-current="page">
50
                <a href="#">Your holds history</a>
51
            </li>
52
        </ul>
53
    </nav>
46
54
47
    <div class="container-fluid">
55
    <div class="container-fluid">
48
        <div class="row">
56
        <div class="row">
Lines 104-110 Link Here
104
                                    <tbody>
112
                                    <tbody>
105
                                    [% FOREACH hold IN holds %]
113
                                    [% FOREACH hold IN holds %]
106
                                        <tr>
114
                                        <tr>
107
                                        <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% hold.biblio.biblionumber | uri %]">[% INCLUDE 'biblio-title.inc' biblio=hold.biblio %]</a></td>
115
                                        <td><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% hold.biblio.biblionumber | uri %]">[% INCLUDE 'biblio-title.inc' biblio=hold.biblio %]</a></td>
108
                                        <td>[% hold.biblio.author | html %]</td>
116
                                        <td>[% hold.biblio.author | html %]</td>
109
                                        <td>[% hold.item.barcode | html %]</td>
117
                                        <td>[% hold.item.barcode | html %]</td>
110
                                        <td>[% Branches.GetName( hold.branchcode ) | html %]</td>
118
                                        <td>[% Branches.GetName( hold.branchcode ) | html %]</td>
111
- 

Return to bug 28631