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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc (-10 / +11 lines)
Lines 474-489 Link Here
474
474
475
[%# Used to build individual breadcrumb items in the breadcrumb nav %]
475
[%# Used to build individual breadcrumb items in the breadcrumb nav %]
476
[% BLOCK breadcrumb_item %]
476
[% BLOCK breadcrumb_item %]
477
    [% IF ( bc_active ) %]
477
    [% IF content.trim %]
478
        <li class="breadcrumb-item active" aria-current="page">
478
        [% IF ( bc_active ) %]
479
            <a href="#">
479
            <li class="breadcrumb-item active" aria-current="page">
480
                <a href="#">
481
                    [% content | $raw %]
482
                </a>
483
            </li>
484
        [% ELSE %]
485
            <li class="breadcrumb-item">
480
                [% content | $raw %]
486
                [% content | $raw %]
481
            </a>
487
            </li>
482
        </li>
488
        [% END %]
483
    [% ELSE %]
484
        <li class="breadcrumb-item">
485
            [% content | $raw %]
486
        </li>
487
    [% END %]
489
    [% END %]
488
[% END %]
490
[% END %]
489
491
490
- 

Return to bug 38685