Bugzilla – Attachment 118641 Details for
Bug 27846
Accessibility: Staff Client - Breadcrumbs should be more accessible
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27846: reports, reserve and reviews folders
Bug-27846-reports-reserve-and-reviews-folders.patch (text/plain), 36.49 KB, created by
Wainui Witika-Park
on 2021-03-23 01:38:39 UTC
(
hide
)
Description:
Bug 27846: reports, reserve and reviews folders
Filename:
MIME Type:
Creator:
Wainui Witika-Park
Created:
2021-03-23 01:38:39 UTC
Size:
36.49 KB
patch
obsolete
>From 7ad2f4d717df921dfadb4e7f8fc34fee3eaa411a Mon Sep 17 00:00:00 2001 >From: Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> >Date: Tue, 9 Mar 2021 22:52:31 +0000 >Subject: [PATCH] Bug 27846: reports, reserve and reviews folders > >Modified breadcrumbs to be accessible, in particular for a >screen-reader. > >Made the block of breadcrumbs be a <nav aria label="Breadcrumb" >class="breadcrumb"> with an ordered list inside. The last breadcrumbs >also has aria-current="page" to specify that it is the current page. > >To test: >1) Apply patch >2) Build scss file >3) Ensure each of the files in the reports, reserve and reviews folders >have breadcrumbs that are in a <nav aria label="Breadcrumb" >class="breadcrumb"> block >4) Ensure that there is an ordered list in the block of breadcrumbs >5) Ensure that the last breadcrumb has aria-current="page" >6) Ensure that the breadcrumbs on each page of the staff client >belonging to these files look the same as before, but the '>' symbol is >replaced with '/' and the last breadcrumb has bold text >7) Ensure that when the last breadcrumb is clicked it takes you to the >page you are currently on > >Sponsored-by: Catalyst IT >--- > .../prog/en/modules/reports/acquisitions_stats.tt | 27 ++++- > .../prog/en/modules/reports/bor_issues_top.tt | 27 ++++- > .../prog/en/modules/reports/borrowers_out.tt | 16 ++- > .../prog/en/modules/reports/borrowers_stats.tt | 27 ++++- > .../prog/en/modules/reports/cash_register_stats.tt | 36 +++++-- > .../prog/en/modules/reports/cat_issues_top.tt | 27 ++++- > .../prog/en/modules/reports/catalogue_out.tt | 16 ++- > .../prog/en/modules/reports/catalogue_stats.tt | 27 ++++- > .../prog/en/modules/reports/dictionary.tt | 78 +++++++++++++-- > .../en/modules/reports/guided_reports_start.tt | 110 +++++++++++++++------ > .../prog/en/modules/reports/issues_avg_stats.tt | 27 ++++- > .../prog/en/modules/reports/issues_stats.tt | 27 ++++- > .../prog/en/modules/reports/itemslost.tt | 28 +++++- > .../prog/en/modules/reports/itemtypes.tt | 27 ++++- > .../prog/en/modules/reports/orders_by_budget.tt | 27 ++++- > .../prog/en/modules/reports/reports-home.tt | 13 ++- > .../prog/en/modules/reports/reserves_stats.tt | 27 ++++- > .../prog/en/modules/reports/serials_stats.tt | 16 ++- > .../prog/en/modules/reserve/request.tt | 42 +++++--- > .../prog/en/modules/reviews/reviewswaiting.tt | 24 ++++- > 20 files changed, 574 insertions(+), 75 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt >index 4db99d2c41..5f84e5af82 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt >@@ -8,7 +8,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> [% IF ( do_it ) %]› <a href="/cgi-bin/koha/reports/acquisitions_stats.pl">Acquisitions statistics</a> › Results[% ELSE %] › Acquisitions statistics [% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/acquisitions_stats.pl">Acquisitions statistics</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Acquisitions statistics >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/bor_issues_top.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/bor_issues_top.tt >index 0f20ba3d2a..5624bbc0f2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/bor_issues_top.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/bor_issues_top.tt >@@ -11,7 +11,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> [% IF ( do_it ) %]› <a href="/cgi-bin/koha/reports/bor_issues_top.pl">Patrons with the most checkouts</a> › Results[% ELSE %]› Patrons with the most checkouts[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/bor_issues_top.pl">Patrons with the most checkouts</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Patrons with the most checkouts >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_out.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_out.tt >index 34a6bd13c0..d552377cfa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_out.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_out.tt >@@ -8,7 +8,21 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> › Patrons with no checkouts</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Patrons with no checkouts >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt >index 17a0ee21b0..63d1a7d099 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt >@@ -14,7 +14,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> › <a href="/cgi-bin/koha/reports/borrowers_stats.pl">Patrons statistics</a>[% IF ( do_it ) %] › Results[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/borrowers_stats.pl">Patrons statistics</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Patrons statistics >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt >index fa6c521503..225c61ddd6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt >@@ -17,15 +17,33 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >- › >- [% IF ( do_it ) %] >- <a href="/cgi-bin/koha/reports/cash_register_stats.pl">Cash register statistics</a> › Results >- [% ELSE %] >- Cash register statistics >- [% END %] >-</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/cash_register_stats.pl">Cash register statistics</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Cash register statistics >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt >index 6cef6f1438..c9df0772c5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt >@@ -9,7 +9,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> › [% IF ( do_it ) %]<a href="/cgi-bin/koha/reports/cat_issues_top.pl">Most-circulated items</a> › Results[% ELSE %]Most-Circulated Items[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/cat_issues_top.pl">Most-circulated items</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Most-Circulated Items >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_out.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_out.tt >index 92c5ce19ca..d073787e03 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_out.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_out.tt >@@ -10,7 +10,21 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> › Items with no checkouts</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Items with no checkouts >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt >index 17f6b400bf..3138299bd3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt >@@ -9,7 +9,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> [% IF ( do_it ) %]› <a href="/cgi-bin/koha/reports/catalogue_stats.pl">Catalog statistics</a> › Results[% ELSE %]› Catalog statistics[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/catalogue_stats.pl">Catalog statistics</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Catalog statistics >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt >index a0e83501bc..1e1d98f554 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt >@@ -20,13 +20,77 @@ > [%- END -%] > [%- END -%] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> › <a href="/cgi-bin/koha/reports/guided_reports.pl">Guided reports wizard</a> >-[% IF ( new_dictionary ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Name the new definition</strong> >-[% ELSIF ( step_2 ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Step 2: Choose the area </strong> >-[% ELSIF ( step_3 ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Step 3: Choose a column </strong> >-[% ELSIF ( step_4 ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Step 4: Specify a value </strong> >-[% ELSIF ( step_5 ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Step 5: Confirm definition</strong> >-[% ELSE %] › <strong> Dictionary </strong>[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl">Guided reports wizard</a> >+ </li> >+ >+ [% IF ( new_dictionary ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Name the new definition >+ </a> >+ </li> >+ >+ [% ELSIF ( step_2 ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Step 2: Choose the area >+ </a> >+ </li> >+ >+ [% ELSIF ( step_3 ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Step 3: Choose a column >+ </a> >+ </li> >+ >+ [% ELSIF ( step_4 ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Step 4: Specify a value >+ </a> >+ </li> >+ >+ [% ELSIF ( step_5 ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Step 5: Confirm definition >+ </a> >+ </li> >+ >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Dictionary >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >index c2c3138d94..2f417c6d04 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >@@ -66,38 +66,86 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'circ-search.inc' %] > >-<div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> >- › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >- › <a href="/cgi-bin/koha/reports/guided_reports.pl">Guided reports wizard</a> >- >- [% IF ( saved1 ) %] >- › Saved reports >- [% ELSIF ( create ) %] >- › Create from SQL >- [% ELSIF ( showsql ) %] >- › <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a> › [% reportname | html %] ([% id | html %]) >- [% ELSIF ( editsql ) %] >- › <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a> › <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | uri %]&phase=Show%20SQL">[% reportname | html %] ([% id | html %])</a> › Edit >- [% ELSIF ( execute ) %] >- › <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a> › <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | uri %]&phase=Show%20SQL">[% name | html %] ([% id | html %])</a> › Run >- [% ELSIF ( build1 || build2 || build3 || build4 || build5 || build6 ) %] >- › <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Build%20new">Build a report</a> >- [% IF ( build1 ) %] >- › Step 1 of 6: Choose a module >- [% ELSIF ( build2 ) %] >- › Step 2 of 6: Pick a report type >- [% ELSIF ( build3 ) %] >- › Step 3 of 6: Select columns for display >- [% ELSIF ( build4 ) %] >- › Step 4 of 6: Select criteria to limit on >- [% ELSIF ( build5 ) %] >- › Step 5 of 6: Pick which columns to total >- [% ELSIF ( build6 ) %] >- › Step 6 of 6: Select how you want the report ordered >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl">Guided reports wizard</a> >+ </li> >+ >+ [% IF ( saved1 ) %] >+ <li> >+ <a href="#" aria-current="page"> >+ Saved reports >+ </a> >+ </li> >+ [% ELSIF ( create ) %] >+ <li> >+ <a href="#" aria-current="page"> >+ Create from SQL >+ </a> >+ </li> >+ [% ELSIF ( showsql ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ [% reportname | html %] ([% id | html %]) >+ </a> >+ </li> >+ [% ELSIF ( editsql ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | uri %]&phase=Show%20SQL">[% reportname | html %] ([% id | html %])</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Edit >+ </a> >+ </li> >+ [% ELSIF ( execute ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | uri %]&phase=Show%20SQL">[% name | html %] ([% id | html %])</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Run >+ </a> >+ </li> >+ [% ELSIF ( build1 || build2 || build3 || build4 || build5 || build6 ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Build%20new">Build a report</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ [% IF ( build1 ) %] >+ Step 1 of 6: Choose a module >+ [% ELSIF ( build2 ) %] >+ Step 2 of 6: Pick a report type >+ [% ELSIF ( build3 ) %] >+ Step 3 of 6: Select columns for display >+ [% ELSIF ( build4 ) %] >+ Step 4 of 6: Select criteria to limit on >+ [% ELSIF ( build5 ) %] >+ Step 5 of 6: Pick which columns to total >+ [% ELSIF ( build6 ) %] >+ Step 6 of 6: Select how you want the report ordered >+ [% END %] >+ </a> > [% END %] >- [% END %] >-</div> <!-- /#breadcrumbs --> >+ </ol> >+</nav> <!-- /#breadcrumbs --> > > <div id="update_sql" class="modal" tabindex="-1" role="dialog" aria-labelledby="update_sql_label" aria-hidden="true"> > <div class="modal-dialog"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_avg_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_avg_stats.tt >index 6a61633de9..bd01bc6fe6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_avg_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_avg_stats.tt >@@ -9,7 +9,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> [% IF ( do_it ) %]› <a href="/cgi-bin/koha/reports/issues_avg_stats.pl">Average loan time</a> › Results [% ELSE %]› Average loan time[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/issues_avg_stats.pl">Average loan time</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Average loan time >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt >index c39a606683..b699c36426 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt >@@ -12,7 +12,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> [% IF ( do_it ) %]› <a href="/cgi-bin/koha/reports/issues_stats.pl">Circulation statistics</a> › Results [% ELSE %]› Circulation statistics[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/issues_stats.pl">Circulation statistics</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Circulation statistics >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >index 6b1abc4436..7c7751e295 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >@@ -16,7 +16,33 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>[% IF ( get_items ) %] › <a href="/cgi-bin/koha/reports/itemslost.pl">Lost items</a> › Results[% ELSE %] › Lost items[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ >+ [% IF ( get_items ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/itemslost.pl">Lost items</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Lost items >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt >index 89f256708b..fac452fd13 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt >@@ -14,7 +14,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>[% IF ( do_it ) %] › <a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalog by item type</a> › Results[% ELSE %] › Catalog by item type[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalog by item type</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Catalog by item type >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt >index 6c23dc7065..12a6ae0926 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt >@@ -11,7 +11,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>[% IF ( get_orders ) %] › <a href="/cgi-bin/koha/reports/orders_by_fund.pl">Orders by fund</a> › Results[% ELSE %] › Orders by fund[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( get_orders ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/orders_by_fund.pl">Orders by fund</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Orders by fund >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reports-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reports-home.tt >index e7edc4ee5f..520e6376d6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reports-home.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reports-home.tt >@@ -8,7 +8,18 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'circ-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › Reports</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Reports >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reserves_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reserves_stats.tt >index 0ee58a9ee9..3bd1f17800 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reserves_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reserves_stats.tt >@@ -12,7 +12,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> [% IF ( do_it ) %]› <a href="/cgi-bin/koha/reports/reserves_stats.pl">Holds statistics</a> › Results [% ELSE %]› Holds statistics[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/reports/reserves_stats.pl">Holds statistics</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Holds statistics >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt >index 91cb513b34..ffc0843129 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt >@@ -15,7 +15,21 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> › Serials subscriptions stats</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Serials subscriptions stats >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index 5dfff18595..c8389f6cfc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -25,18 +25,38 @@ > [% INCLUDE 'circ-search.inc' %] > > [% UNLESS ( multi_hold ) %] >- <div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › >- <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> › >- [% INCLUDE 'biblio-title.inc' link =1 %] › >- Place a hold >- </div> >+ <nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> >+ </li> >+ [% INCLUDE 'biblio-title.inc' link =1 %] >+ <li> >+ <a href="#" aria-current="page"> >+ Place a hold >+ </a> >+ </li> >+ </ol> >+ </nav> > [% ELSE %] >- <div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › >- <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> › >- Confirm holds >- </div> >+ <nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Confirm holds >+ </a> >+ </li> >+ </ol> >+ </nav> > [% END # UNLESS multi_hold %] > > <div class="main container-fluid"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >index 20b9b85f20..0a6f697dfc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >@@ -9,8 +9,28 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> >-› <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments</a> ›[% IF ( status ) %] Approved comments[% ELSE %] Comments awaiting moderation[% END %]</div> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ [% IF ( status ) %] >+ Approved comments >+ [% ELSE %] >+ Comments awaiting moderation >+ [% END %] >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 27846
:
118016
|
118569
|
118570
|
118571
|
118573
|
118576
|
118626
|
118627
|
118628
|
118630
|
118631
|
118632
|
118633
|
118636
|
118637
|
118638
|
118639
|
118640
|
118641
|
118642
|
118643
|
118717
|
118718
|
118719
|
118720
|
118721
|
118722
|
118723
|
118724
|
118725
|
118726
|
118727
|
118728
|
118729
|
118730
|
118731
|
118732
|
118738
|
118739
|
118740
|
118744
|
118745
|
118746
|
118747
|
118748
|
118749
|
118750
|
118751
|
118752
|
118753
|
118754
|
118755
|
118756
|
118757
|
118758
|
118759
|
118760
|
118761
|
118767
|
118770