Bugzilla – Attachment 118755 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: tools and virtualshelves folders
Bug-27846-tools-and-virtualshelves-folders.patch (text/plain), 53.17 KB, created by
Martin Renvoize (ashimema)
on 2021-03-24 13:40:02 UTC
(
hide
)
Description:
Bug 27846: tools and virtualshelves folders
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-03-24 13:40:02 UTC
Size:
53.17 KB
patch
obsolete
>From 30f085c4a41fbb95e4270eb16f594959ca7eb8f1 Mon Sep 17 00:00:00 2001 >From: Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> >Date: Wed, 10 Mar 2021 02:38:52 +0000 >Subject: [PATCH] Bug 27846: tools and virtualshelves 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 tools and virtualshelves 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 >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > .../prog/en/modules/tools/access_files.tt | 16 +++- > .../automatic_item_modification_by_age.tt | 38 ++++++-- > .../prog/en/modules/tools/batchMod-del.tt | 18 +++- > .../prog/en/modules/tools/batchMod-edit.tt | 19 +++- > .../prog/en/modules/tools/batchMod.tt | 33 +++++-- > .../en/modules/tools/batch_delete_records.tt | 18 +++- > .../modules/tools/batch_extend_due_dates.tt | 18 +++- > .../tools/batch_record_modification.tt | 18 +++- > .../prog/en/modules/tools/cleanborrowers.tt | 49 +++++++--- > .../prog/en/modules/tools/csv-profiles.tt | 20 +++- > .../prog/en/modules/tools/export.tt | 16 +++- > .../prog/en/modules/tools/holidays.tt | 16 +++- > .../prog/en/modules/tools/import_borrowers.tt | 27 +++++- > .../prog/en/modules/tools/inventory.tt | 28 +++++- > .../prog/en/modules/tools/koha-news.tt | 33 ++++++- > .../prog/en/modules/tools/letter.tt | 77 +++++++++++---- > .../en/modules/tools/manage-marc-import.tt | 35 +++++-- > .../tools/marc_modification_templates.tt | 37 +++++-- > .../prog/en/modules/tools/modborrowers.tt | 18 +++- > .../prog/en/modules/tools/overduerules.tt | 16 +++- > .../prog/en/modules/tools/picture-upload.tt | 27 +++++- > .../prog/en/modules/tools/problem-reports.tt | 21 +++- > .../prog/en/modules/tools/quotes-upload.tt | 19 +++- > .../prog/en/modules/tools/quotes.tt | 16 +++- > .../prog/en/modules/tools/scheduler.tt | 16 +++- > .../prog/en/modules/tools/showdiffmarc.tt | 24 ++++- > .../en/modules/tools/stage-marc-import.tt | 28 +++++- > .../prog/en/modules/tools/stockrotation.tt | 96 +++++++++++++------ > .../prog/en/modules/tools/tools-home.tt | 13 ++- > .../prog/en/modules/tools/upload-images.tt | 54 +++++++++-- > .../prog/en/modules/tools/upload.tt | 37 ++++--- > .../prog/en/modules/tools/viewlog.tt | 34 +++++-- > .../prog/en/modules/virtualshelves/shelves.tt | 82 ++++++++++++---- > 33 files changed, 814 insertions(+), 203 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt >index c7c1d7c51e..8a9d869294 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.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/tools/tools-home.pl">Tools</a> › Access files</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="#" aria-current="page"> >+ Access files >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt >index 78063a20e1..415c330db8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt >@@ -9,16 +9,34 @@ > <body id="tools_automatic_item_modification_by_age" class="tools"> > [% 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> › >- [% IF ( op == 'edit_form' ) %] >- <a href="/cgi-bin/koha/tools/automatic_item_modification_by_age.pl">Automatic item modifications by age</a> › >- Rules >- [% ELSE %] >- Automatic item modifications by age >- [% 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> >+ >+ [% IF ( op == 'edit_form' ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/automatic_item_modification_by_age.pl">Automatic item modifications by age</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Rules >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Automatic item modifications by age >+ </a> >+ </li> >+ [% END %] >+ </ol> >+ </nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt >index 5a97941b25..80502e595b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt >@@ -13,11 +13,19 @@ > [% 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/tools/batchMod.pl?del=1">Batch item deletion</a> >-</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="#" aria-current="page">Batch item deletion</a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt >index 42132bfcc9..700925a8a7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt >@@ -14,11 +14,20 @@ > [% 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/tools/batchMod.pl">Batch item modification</a> >- </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="#" aria-current="page">Batch item modification</a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod.tt >index 7f4be91d37..19a69c3f22 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod.tt >@@ -9,15 +9,30 @@ > [% 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> › >- [% IF ( del ) %] >- <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Batch item deletion</a> >- [% ELSE %] >- <a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a> >- [% 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> >+ >+ [% IF ( del ) %] >+ <li> >+ <a href="#" aria-current="page"> >+ Batch item deletion >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Batch item modification >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >index 1cd8e0793a..cdf6946b15 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >@@ -11,11 +11,19 @@ > [% 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/tools/batch_delete_records.pl">Batch record deletion</a> >-</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="#" aria-current="page">Batch record deletion</a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt >index f3d8f4ad6a..df861cdf71 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt >@@ -17,11 +17,19 @@ > [% 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/tools/batch_extend_due_dates.pl">Batch extend due dates</a> >- </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="#" aria-current="page">Batch extend due dates</a> >+ </li> >+ </ol> >+ </nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt >index 67b922156a..6ca1af50e2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt >@@ -12,11 +12,19 @@ > [% 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/tools/batch_record_modification.pl">Batch record modification</a> >- </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="#" aria-current="page">Batch record modification</a> >+ </li> >+ </ol> >+ </nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt >index f8e0db39d1..c2ba492e02 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt >@@ -13,17 +13,44 @@ > [% 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> › >- [% IF step == 1 %] >- Batch patron deletion and anonymization >- [% ELSE %] >- <a href="/cgi-bin/koha/tools/cleanborrowers.pl">Batch patron deletion and anonymization</a> › >- [% END %] >- [% IF step == 2 %] Confirm [% END %] >- [% IF step == 3 %] Finished [% 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> >+ >+ [% IF step == 1 %] >+ <li> >+ <a href="#" aria-current="page"> >+ Batch patron deletion and anonymization >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="/cgi-bin/koha/tools/cleanborrowers.pl">Batch patron deletion and anonymization</a> >+ </li> >+ [% END %] >+ >+ [% IF step == 2 %] >+ <li> >+ <a href="#" aria-current="page"> >+ Confirm >+ </a> >+ </li> >+ [% END %] >+ >+ [% IF step == 3 %] >+ <li> >+ <a href="#" aria-current="page"> >+ Finished >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt >index 56d67652fe..3cf4f39c1a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt >@@ -10,11 +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/tools/tools-home.pl">Tools</a> >- › CSV export profiles >-</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="#" aria-current="page"> >+ CSV export profiles >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >index 4e9a992c04..ce6c751f38 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >@@ -16,7 +16,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/tools/tools-home.pl">Tools</a> › Export data</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="#" aria-current="page"> >+ Export data >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >index 8aefa2458f..8343e01df7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >@@ -29,7 +29,21 @@ td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl > [% 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> › [% Branches.GetName( branch ) | html %] calendar</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="#" aria-current="page"> >+ [% Branches.GetName( branch ) | html %] calendar >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >index 5ed7f2b7d6..6259eaf4fa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >@@ -18,7 +18,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'patron-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/tools/import_borrowers.pl">Import patrons</a>[% IF ( uploadborrowers ) %] › 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/tools/tools-home.pl">Tools</a> >+ </li> >+ [% IF ( uploadborrowers ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/import_borrowers.pl">Import patrons</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Import patrons >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > [% INCLUDE 'blocking_errors.inc' %] > <div class="main container-fluid"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >index 4faa432eda..fa4cb5c2ca 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >@@ -12,7 +12,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/tools/tools-home.pl">Tools</a> › [% IF (loop) %]<a href="/cgi-bin/koha/tools/inventory.pl">Inventory</a> › Results[% ELSE %]Inventory[% 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> >+ >+ [% IF (loop) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/inventory.pl">Inventory</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Inventory >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt >index d609997a40..aa5e1b66a9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt >@@ -25,8 +25,37 @@ > [% 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> › [% IF ( add_form ) %]<a href="/cgi-bin/koha/tools/koha-news.pl">News</a> › [% IF ( id ) %] >-Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% 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> >+ >+ [% IF ( add_form ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/koha-news.pl">News</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ [% IF ( id ) %] >+ Edit news item >+ [% ELSE %] >+ Add news item >+ [% END %] >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ News >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > [% IF ( add_form ) %] > <div class="main container-fluid"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >index 9bc75fc4ef..83078942bb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >@@ -30,31 +30,66 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'letters-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> › >- [% IF ( add_form or copy_form) %] >- [% IF ( modify ) %] >- <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> › >- Modify notice >- [% ELSE %] >- <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> › >- Add notice >- [% END %] >- [% ELSE %] >- [% IF ( add_validate or copy_validate) %] >- <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> › >- Notice added >+ <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> >+ >+ [% IF ( add_form or copy_form) %] >+ [% IF ( modify ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Modify notice >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Add notice >+ </a> >+ </li> >+ [% END %] > [% ELSE %] >- [% IF ( delete_confirm ) %] >- <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> › >- Confirm deletion >+ [% IF ( add_validate or copy_validate) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Notice added >+ </a> >+ </li> > [% ELSE %] >- Notices & slips >+ [% IF ( delete_confirm ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/letter.pl">Notices & slips</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Confirm deletion >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Notices & slips >+ </a> >+ </li> >+ [% END %] > [% END %] > [% END %] >- [% END %] >- </div> <!-- /#breadcrumbs --> >+ </ol> >+ </nav> <!-- /#breadcrumbs --> > > <div id="preview_template" class="modal in" tabindex="-1" role="dialog" aria-labelledby="preview_template_label" aria-hidden="true"> > <div class="modal-dialog modal-lg"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt >index 9d0f3723be..c8859a69a8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt >@@ -20,15 +20,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/tools/tools-home.pl">Tools</a> >- [% IF ( import_batch_id ) %] >- › >- <a href="[% script_name | url %]">Manage staged MARC records</a> >- › Batch [% import_batch_id | html %] >- [% ELSE %] >- › Manage staged MARC records >- [% 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> >+ [% IF ( import_batch_id ) %] >+ <li> >+ <a href="[% script_name | url %]">Manage staged MARC records</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Batch [% import_batch_id | html %] >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Manage staged MARC records >+ </a> >+ </li> >+ [% END %] >+ </ol> >+ </nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt >index 6c826d4f50..b13d789daa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt >@@ -30,16 +30,33 @@ > [% END %] > [% END %] > >-<div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › >- <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › >- [% IF ( template_name ) %] >- <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">MARC modification templates</a> >- › [% template_name | html %] >- [% ELSE %] >- MARC modification templates >- [% 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> >+ >+ [% IF ( template_name ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">MARC modification templates</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ [% template_name | html %] >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ MARC modification templates >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt >index 9147d522f9..408cb012cd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt >@@ -14,11 +14,19 @@ > [% 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/tools/modborrowers.pl">Batch patron modification</a> >-</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="#" aria-current="page">Batch patron modification</a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >index 0181844dee..a23d5569bd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >@@ -12,7 +12,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/tools/tools-home.pl">Tools</a> › Overdue notice/status triggers</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="#" aria-current="page"> >+ Overdue notice/status triggers >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt >index 29fd108ad3..f0c9e71927 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt >@@ -11,7 +11,32 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'patron-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> › [% IF ( TOTAL ) %]<a href="/cgi-bin/koha/tools/picture-upload.pl">Upload patron images</a> › Results[% ELSE %]Upload patron images[% 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> >+ [% IF ( TOTAL ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/picture-upload.pl">Upload patron images</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Upload patron images >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > [% INCLUDE 'blocking_errors.inc' %] > <div class="main container-fluid"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >index bda67c2b47..63d26c4e1c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >@@ -12,11 +12,22 @@ > > [% INCLUDE 'header.inc' %] > [% INCLUDE 'prefs-admin-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> › >- OPAC problem reports >-</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="#" aria-current="page"> >+ OPAC problem reports >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt >index 867a3628c3..80a38d79b4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt >@@ -12,7 +12,24 @@ > [% 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/tools/quotes.pl">Quote editor</a> › Quote uploader</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/tools/quotes.pl">Quote editor</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Quote uploader >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >index 2be28234d7..afc5ceeeea 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >@@ -11,7 +11,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/tools/tools-home.pl">Tools</a> › Quote editor</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="#" aria-current="page"> >+ Quote editor >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/scheduler.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/scheduler.tt >index bf968fdaec..e1c479c80c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/scheduler.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/scheduler.tt >@@ -10,7 +10,21 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'circ-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> › <strong>Task scheduler</strong></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="#" aria-current="page"> >+ Task scheduler >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/showdiffmarc.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/showdiffmarc.tt >index b884a960ee..1310b1fd33 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/showdiffmarc.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/showdiffmarc.tt >@@ -16,9 +16,27 @@ > > [% INCLUDE 'header.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/tools/manage-marc-import.pl">Manage staged MARC records</a> › <a href="/cgi-bin/koha/tools/manage-marc-import.pl?import_batch_id=[% batchid | html %]">Batch [% batchid | html %]</a> › Compare matched records >-</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/tools/manage-marc-import.pl">Manage staged MARC records</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/tools/manage-marc-import.pl?import_batch_id=[% batchid | uri %]">Batch [% batchid | html %]</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Compare matched records >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt >index 7c758292c9..b04c794553 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt >@@ -15,7 +15,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/tools/tools-home.pl">Tools</a> › [% IF ( uploadmarc ) %]<a href="/cgi-bin/koha/tools/stage-marc-import.pl">Stage MARC records for import</a> › Upload Results[% ELSE %]Stage MARC records for import[% 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> >+ >+ [% IF ( uploadmarc ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/stage-marc-import.pl">Stage MARC records for import</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Upload Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Stage MARC records for import >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt >index 754e833e26..b5f1a2d5e8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt >@@ -14,33 +14,75 @@ > [% 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> >- >-[% IF no_op_set %] >- › Stock rotation >-[% ELSE %] >- › <a href="/cgi-bin/koha/tools/stockrotation.pl">Stock rotation</a> >-[% END %] >- >-[% IF (op == 'create_edit_rota' && rota.rota_id) %] >- › Edit rota >-[% ELSIF (op == 'create_edit_rota' && !rota.rota_id) %] >- › Create rota >-[% ELSIF (op == 'manage_stages') %] >- › Manage stages >-[% ELSIF (op == 'create_edit_stage' && stage.id) %] >- <a href="?op=manage_stages&rota_id=[% rota_id | uri %]">› Manage stages</a> >- › Edit stage >-[% ELSIF (op == 'create_edit_stage' && !stage.id) %] >- <a href="?op=manage_stages&rota_id=[% rota_id | uri %]">› Manage stages</a> >- › Create stage >-[% ELSIF (op == 'manage_items') %] >- › Manage 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/tools/tools-home.pl">Tools</a> >+ </li> >+ >+ [% IF no_op_set %] >+ <li> >+ <a href="#" aria-current="page"> >+ Stock rotation >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="/cgi-bin/koha/tools/stockrotation.pl">Stock rotation</a> >+ </li> >+ [% END %] >+ >+ [% IF (op == 'create_edit_rota' && rota.rota_id) %] >+ <li> >+ <a href="#" aria-current="page"> >+ Edit rota >+ </a> >+ </li> >+ [% ELSIF (op == 'create_edit_rota' && !rota.rota_id) %] >+ <li> >+ <a href="#" aria-current="page"> >+ Create rota >+ </a> >+ </li> >+ [% ELSIF (op == 'manage_stages') %] >+ <li> >+ <a href="#" aria-current="page"> >+ Manage stages >+ </a> >+ </li> >+ [% ELSIF (op == 'create_edit_stage' && stage.id) %] >+ <li> >+ <a href="?op=manage_stages&rota_id=[% rota_id | uri %]">Manage stages</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Edit stage >+ </a> >+ </li> >+ [% ELSIF (op == 'create_edit_stage' && !stage.id) %] >+ <li> >+ <a href="?op=manage_stages&rota_id=[% rota_id | uri %]"> >+ </li> >+ <li> >+ Manage stages</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Create stage >+ </a> >+ </li> >+ [% ELSIF (op == 'manage_items') %] >+ <li> >+ <a href="#" aria-current="page"> >+ Manage items >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt >index c8d7f7d567..9c3ef615d8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt >@@ -8,7 +8,18 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › Tools</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"> >+ Tools >+ </a> >+ </li> >+ </ol> >+</nav> > > <div class="container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt >index df25880b04..4da0803b5d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt >@@ -13,15 +13,51 @@ > [% 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/tools/upload-cover-image.pl">Upload local cover image</a> >- [% IF ( uploadimage ) %] › Upload results >- [% ELSIF itemnumber %] › Upload cover for itemnumber: [% itemnumber | html %] >- [% ELSIF biblionumber %] › Upload cover for biblionumber: [% biblionumber | html %] >- [% 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> >+ >+ [% IF ( uploadimage ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/upload-cover-image.pl">Upload local cover image</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Upload results >+ </a> >+ </li> >+ [% ELSIF itemnumber %] >+ <li> >+ <a href="/cgi-bin/koha/tools/upload-cover-image.pl">Upload local cover image</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Upload cover for itemnumber: [% itemnumber | html %] >+ </a> >+ </li> >+ [% ELSIF biblionumber %] >+ <li> >+ <a href="/cgi-bin/koha/tools/upload-cover-image.pl">Upload local cover image</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Upload cover for biblionumber: [% biblionumber | html %] >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Upload local cover image >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt >index 027f66de74..9f0b46d1ca 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt >@@ -19,21 +19,28 @@ > [% END %] > > [% BLOCK breadcrumbs %] >- <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/tools/upload.pl">Upload</a> >- › >- <span id="lastbreadcrumb"> >- [% IF mode=='new' || mode =='deleted'%] >- Add new upload or search >- [% ELSE %] >- Results >- [% END %] >- </span> >- </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/tools/upload.pl">Upload</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ [% IF mode=='new' || mode =='deleted'%] >+ Add new upload or search >+ [% ELSE %] >+ Results >+ [% END %] >+ </a> >+ </li> >+ </ol> >+ </nav> > [% END %] > > [% BLOCK form_new %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >index 961f3cc08e..945b2ebfb8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >@@ -137,14 +137,32 @@ > [% END %] > [% END %] > >-<div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › >- [% IF ( do_it ) %] >- <a href="/cgi-bin/koha/tools/viewlog.pl">Logs</a> › Results >- [% ELSE %] >- Logs >- [% 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> >+ [% IF ( do_it ) %] >+ <li> >+ <a href="/cgi-bin/koha/tools/viewlog.pl">Logs</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ Results >+ </a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Logs >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >index 076206554b..b8f363dcb1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >@@ -35,28 +35,76 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › >- [% IF op != 'list' %] >- <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a> >- [% ELSE %] >- Lists >- [% END %] >- [% IF shelf AND shelf.is_private %] › >- [% IF op == 'view' OR op == 'edit_form' %] >- <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PRIVATE | uri %]">Your lists</a> >+<nav aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ >+ [% IF op != 'list' %] >+ <li> >+ <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a> >+ </li> > [% ELSE %] >- Your lists >+ <li> >+ <a href="#" aria-current="page"> >+ Lists >+ </a> >+ </li> >+ [% END %] >+ >+ [% IF shelf AND shelf.is_private %] >+ [% IF op == 'view' OR op == 'edit_form' %] >+ <li> >+ <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PRIVATE | uri %]">Your lists</a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Your lists >+ </a> >+ </li> >+ [% END %] >+ >+ [% ELSIF shelf AND shelf.is_public %] >+ [% IF op == 'view' %] >+ <li> >+ <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PUBLIC | uri %]">Public lists</a> >+ </li> >+ [% ELSE %] >+ <li> >+ <a href="#" aria-current="page"> >+ Public lists >+ </a> >+ </li> >+ [% END %] > [% END %] >- [% ELSIF shelf AND shelf.is_public %] › >+ > [% IF op == 'view' %] >- <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PUBLIC | uri %]">Public lists</a> >- [% ELSE %] >- Public lists >+ <li> >+ <a href="#" aria-current="page"> >+ Contents of <em>[% shelf.shelfname | html %]</em> >+ </a> >+ </li> >+ [% END %] >+ >+ [% IF op == 'add_form' %] >+ <li> >+ <a href="#" aria-current="page"> >+ Create new list >+ </a> >+ </li> > [% END %] >- [% END %] > >-[% IF op == 'view' %]› Contents of <em>[% shelf.shelfname | html %]</em>[% END %][% IF op == 'add_form' %] › Create new list[% END %][% IF op == 'edit_form' %] › Edit list <em>[% shelf.shelfname | html %]</em>[% END %]</div> >+ [% IF op == 'edit_form' %] >+ <li> >+ <a href="#" aria-current="page"> >+ Edit list <em>[% shelf.shelfname | html %]</em> >+ </a> >+ </li> >+ [% END %] >+ </ol> >+</nav> > > <div class="main container-fluid"> > <div class="row"> >-- >2.20.1
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