Bugzilla – Attachment 122019 Details for
Bug 28243
Accessibility: Staff interface - add captions to tables
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28243: tools folder
Bug-28243-tools-folder.patch (text/plain), 24.85 KB, created by
Wainui Witika-Park
on 2021-06-16 03:38:05 UTC
(
hide
)
Description:
Bug 28243: tools folder
Filename:
MIME Type:
Creator:
Wainui Witika-Park
Created:
2021-06-16 03:38:05 UTC
Size:
24.85 KB
patch
obsolete
>From a6d3611855a1cb886e5ed181a3706aa7c1f15030 Mon Sep 17 00:00:00 2001 >From: Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> >Date: Wed, 16 Jun 2021 02:16:00 +0000 >Subject: [PATCH] Bug 28243: tools folder > >Added captions to tables for accessibility purposes, some of these >include class="sr-only" so that they are not visible, but they are still present for those who use screen-readers. > >To test: >1) Apply patch and dependencies >2) Go to Staff Client >3) Go to tools >4) Go to each of the pages/files and check if they have tables >5) Check that each of the tables have captions to describe them (unless they have special heading tags instead) - some of these will be >visible on the page and some will be hidden with "sr-only" > >Sponsored-by: Catalyst IT >--- > .../prog/en/modules/tools/access_files.tt | 1 + > .../tools/automatic_item_modification_by_age.tt | 2 +- > .../prog/en/modules/tools/batchMod-del.tt | 5 ++++ > .../prog/en/modules/tools/batchMod-edit.tt | 3 +++ > .../prog/en/modules/tools/batch_delete_records.tt | 2 ++ > .../en/modules/tools/batch_extend_due_dates.tt | 2 ++ > .../en/modules/tools/batch_record_modification.tt | 2 ++ > .../prog/en/modules/tools/csv-profiles.tt | 1 + > .../prog/en/modules/tools/holidays.tt | 29 +++++++++++----------- > .../prog/en/modules/tools/inventory.tt | 1 + > .../prog/en/modules/tools/koha-news.tt | 1 + > .../intranet-tmpl/prog/en/modules/tools/letter.tt | 3 +++ > .../prog/en/modules/tools/manage-marc-import.tt | 4 +++ > .../modules/tools/marc_modification_templates.tt | 2 ++ > .../prog/en/modules/tools/modborrowers.tt | 2 ++ > .../prog/en/modules/tools/overduerules.tt | 1 + > .../prog/en/modules/tools/problem-reports.tt | 1 + > .../prog/en/modules/tools/quotes-upload.tt | 1 + > .../intranet-tmpl/prog/en/modules/tools/quotes.tt | 1 + > .../prog/en/modules/tools/scheduler.tt | 3 ++- > .../prog/en/modules/tools/stockrotation.tt | 2 ++ > .../intranet-tmpl/prog/en/modules/tools/upload.tt | 1 + > .../intranet-tmpl/prog/en/modules/tools/viewlog.tt | 1 + > 23 files changed, 55 insertions(+), 16 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 154b713771..f9fc02a5d1 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 >@@ -38,6 +38,7 @@ > [% ELSE %] > [% IF ( files_loop ) %] > <table id="files"> >+ <caption class="sr-only">Files</caption> > <thead> > <tr> > <th>Name</th> >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 39b91853f8..18d77f43bd 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 >@@ -187,8 +187,8 @@ > </fieldset> > [% ELSIF rules %] > <div> >- <h2>List of rules</h2> > <table id="rulest"> >+ <caption>List of rules</caption> > <thead> > <tr> > <th>Age</th> >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 5269cf003e..b7739184f7 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 >@@ -42,6 +42,7 @@ > [% IF ( itemresults ) %]<p>Warning, the following barcodes were not found:</p>[% ELSE %]<p>Warning: no barcodes were found</p>[% END %] > </div> > <table style="margin:auto;"> >+ <caption class="sr-only">Barcodes not found</caption> > <thead> > <tr><th>Barcodes not found</th></tr> > </thead> >@@ -57,6 +58,7 @@ > [% IF ( itemresults ) %]<p>Warning, the following itemnumbers were not found:</p>[% ELSE %]<p>Warning: no itemnumbers were found</p>[% END %] > </div> > <table style="margin:auto;"> >+ <caption class="sr-only">Itemnumbers not found</caption> > <thead> > <tr><th>Itemnumbers not found</th></tr> > </thead> >@@ -73,6 +75,7 @@ > <p>Warning, the following items cannot be deleted: </p> > </div> > <table style="margin:auto;"> >+ <caption class="sr-only">Cannot be deleted</caption> > <thead> > <tr><th>Cannot be deleted</th></tr> > </thead> >@@ -111,6 +114,7 @@ > </p> > > <table id="itemst"> >+ <caption class="sr-only">Items</caption> > <thead> > <tr> > [% IF ( show ) %]<th> </th>[% END %] >@@ -260,6 +264,7 @@ > <p>[% not_deleted_items | html %] item(s) could not be deleted: [% FOREACH not_deleted_itemnumber IN not_deleted_itemnumbers %][% not_deleted_itemnumber.itemnumber | html %][% END %]</p> > [% IF ( not_deleted_loop ) %] > <table id="itemst"> >+ <caption class="sr-only">Items</caption> > <thead> > <tr> > <th>Itemnumber</th> >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 dee7d79998..f58f86ffaf 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 >@@ -74,6 +74,7 @@ > </div> > > <table style="margin:auto;"> >+ <caption class="sr-only">Barcodes not found</caption> > <thead> > <tr><th>Barcodes not found</th></tr> > </thead> >@@ -97,6 +98,7 @@ > </div> > > <table style="margin:auto;"> >+ <caption class="sr-only">Itemnumbers not found</caption> > <thead> > <tr><th>Itemnumbers not found</th></tr> > </thead> >@@ -152,6 +154,7 @@ > </p> <!-- /#selections --> > > <table id="itemst"> >+ <caption class="sr-only">Items</caption> > <thead> > <tr> > <th> </th> >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 14341364b6..9e7dd78ac5 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 >@@ -143,6 +143,7 @@ > </div> > <form action="/cgi-bin/koha/tools/batch_delete_records.pl" method="post" id="selectrecords"> > <table id="biblios" class="records"> >+ <caption class="sr-only">Biblios</caption> > <thead> > <tr> > <th></th> >@@ -175,6 +176,7 @@ > </div> > <form action="/cgi-bin/koha/tools/batch_delete_records.pl" method="post" id="selectauths"> > <table id="authorities" class="records"> >+ <caption class="sr-only">Authorities</caption> > <thead> > <tr> > <th></th> >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 66ba593bf6..c4796a0545 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 >@@ -129,6 +129,7 @@ > | <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a> > </div> > <table id="checkouts"> >+ <caption class="sr-only">Checkouts</caption> > <thead> > <tr> > <th> </th> >@@ -178,6 +179,7 @@ > </div> > > <table id="checkouts_result"> >+ <caption class="sr-only">Checkouts results</caption> > <thead> > <tr> > <th>Due date</th> >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 268f6b6b7f..771f7ffffb 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 >@@ -183,6 +183,7 @@ > | <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a> > </div> > <table id="biblios" class="records"> >+ <caption class="sr-only">Biblios</caption> > <thead> > <tr> > <th> </th> >@@ -211,6 +212,7 @@ > | <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a> > </div> > <table id="authorities" class="records"> >+ <caption class="sr-only">Authorities</caption> > <thead> > <tr> > <th></th> >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 70c27de5f6..d7dfdd4cfd 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 >@@ -294,6 +294,7 @@ > > [% IF csv_profiles %] > <table id="table_csv_profiles"> >+ <caption class="sr-only">CSV profiles</caption> > <thead> > <th>CSV profile ID</th> > <th>Name</th> >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 ba52fce510..9804b5a751 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >@@ -238,15 +238,12 @@ > </p> > </div> > <div id="holiday-list"> >+ <h2>Holidays</h2> > <!-- Exceptions First --> > <!-- this will probably always have the least amount of data --> > [% IF ( EXCEPTION_HOLIDAYS_LOOP ) %] >-<h2>Exceptions</h2> >- <label class="controls"> >- <input type="checkbox" name="show_past" id="show_past_holidayexceptions" class="show_past" /> >- Show past entries >- </label> > <table id="holidayexceptions"> >+ <caption>Exceptions</caption> > <thead><tr> > <th class="exception">Date</th> > <th class="exception">Title</th> >@@ -264,14 +261,18 @@ > <td>[% EXCEPTION_HOLIDAYS_LOO.TITLE | html %]</td> > <td>[% EXCEPTION_HOLIDAYS_LOO.DESCRIPTION | html %]</td> > </tr> >- [% END %] >+ [% END %] > </tbody> > </table> >+ <label class="controls"> >+ <input type="checkbox" name="show_past" id="show_past_holidayexceptions" class="show_past" /> >+ Show past entries of Exceptions >+ </label> > [% END %] > > [% IF ( WEEK_DAYS_LOOP ) %] >-<h2>Weekly - Repeatable holidays</h2> > <table id="holidayweeklyrepeatable"> >+<caption>Weekly - Repeatable holidays</caption> > <thead> > <tr> > <th class="repeatableweekly">Day of week</th> >@@ -293,8 +294,8 @@ > [% END %] > > [% IF ( DAY_MONTH_HOLIDAYS_LOOP ) %] >-<h2>Yearly - Repeatable holidays</h2> > <table id="holidaysyearlyrepeatable"> >+<caption>Yearly - Repeatable holidays</caption> > <thead> > <tr> > [% IF ( dateformat == "metric" ) %] >@@ -321,12 +322,8 @@ > [% END %] > > [% IF ( HOLIDAYS_LOOP ) %] >-<h2>Unique holidays</h2> >-<label class="controls"> >- <input type="checkbox" name="show_past" id="show_past_holidaysunique" class="show_past" /> >- Show past entries >-</label> > <table id="holidaysunique"> >+<caption>Unique holidays</caption> > <thead> > <tr> > <th class="holiday">Date</th> >@@ -345,9 +342,13 @@ > <td>[% HOLIDAYS_LOO.TITLE | html %]</td> > <td>[% HOLIDAYS_LOO.DESCRIPTION.replace('\\\r\\\n', '<br />') | html %]</td> > </tr> >- [% END %] >+ [% END %] > </tbody> > </table> >+<label class="controls"> >+ <input type="checkbox" name="show_past" id="show_past_holidaysunique" class="show_past" /> >+ Show past entries of Unique holidays >+</label> > [% END %] > </div> > </div> >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 8edc3739b4..bfcae86deb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >@@ -235,6 +235,7 @@ > [% END %] > > <table id="inventoryt"> >+ <caption class="sr-only">Inventory</caption> > <thead> > <tr> > [% UNLESS uploadedbarcodesflag %]<th>Seen</th>[% END %] >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 5ab5ac5bd7..bc46bb3e33 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 >@@ -143,6 +143,7 @@ > [% IF ( opac_news_count ) %] > <form id="del_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl"> > <table id="newst"> >+ <caption class="sr-only">News</caption> > <thead> <tr> > <th class="NoSort"> </th> > <th>Location</th> >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 fd98cdeca9..90ad8c8433 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >@@ -172,6 +172,7 @@ > > [% IF letter %] > <table id="lettert"> >+ <caption class="sr-only">Letter</caption> > <thead> > <tr> > <th>Library</th> >@@ -488,6 +489,7 @@ > <span class="sms_counter" id="sms_counter_[% lang | html %]">[% IF letter.content && letter.content.length > 0 %][% letter.content.length | html %][% ELSE %]0[% END %]/160 characters</span> > [% END %] > <table> >+ <caption class="sr-only">SQL</caption> > <tr> > <td> > <select name="SQLfieldname" id="SQLfieldname_[% letter.message_transport_type | html %]_[% lang | html %]" multiple="multiple" size="9"> >@@ -538,6 +540,7 @@ > <div class="dialog alert"> > <h1>Delete notice?</h1> > <table> >+ <caption class="sr-only">Notice to delete</caption> > <thead> > <tr> > <th>Library</th> >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 9c44024ccf..74a804fe57 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 >@@ -275,6 +275,7 @@ > [% IF ( did_commit ) %] > <div class="dialog message">Completed import of records</div> > <table> >+ <caption class="sr-only">Import information</caption> > <tr> > <td>Number of records added</td> > <td>[% num_added | html %]</td> >@@ -307,6 +308,7 @@ > [% IF ( did_revert ) %] > <div class="dialog message">Success: Import reversed</div> > <table> >+ <caption class="sr-only">Import reverse information</caption> > <tr> > <td>Number of records deleted</td> > <td>[% num_deleted | html %]</td> >@@ -342,6 +344,7 @@ > [% END %] > > <table> >+ <caption class="sr-only">Batch list</caption> > <tr> > <th>#</th> > <th>File name</th> >@@ -411,6 +414,7 @@ > > [% IF import_batch_id && !did_clean %] > <table id="records-table"> >+ <Caption class="sr-only">Records</caption> > <thead> > <tr> > <th>#</th> >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 d7673761ee..8c162cb563 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 >@@ -84,6 +84,7 @@ > <h1>MARC modification templates [% template_id | html %]</h1> > > <table id="templatest"> >+ <caption class="sr-only">Templates</caption> > <thead> > <tr> > <th>Template</th> >@@ -111,6 +112,7 @@ > [% IF ( ActionsLoop ) %] > > <table id="template_actions" class="template_actions"> >+ <caption class="sr-only">Template actions</caption> > <thead> > <tr> > <th>Change order</th> >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 55d4bb1388..6ced61d10c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt >@@ -98,6 +98,7 @@ > [% IF ( notfoundcardnumbers ) %] > <div class="dialog alert"><p>Warning, the following cardnumbers were not found:</p></div> > <table style="margin:auto;"> >+ <caption class="sr-only">Cardnumbers not found</caption> > <thead> > <tr><th>Cardnumbers not found</th></tr> > </thead> >@@ -140,6 +141,7 @@ > <div id="cataloguing_additem_itemlist"> > <div style="overflow:auto"> > <table id="borrowerst"> >+ <caption class="sr-only">Patrons</caption> > <thead> > <tr> > [% IF ( op == 'show' ) %] >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 118b7dd7f7..d606c07cb8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >@@ -80,6 +80,7 @@ > [% FOR tab IN tabs %] > <div id="[% tab.id | html %]"> > <table> >+ <caption class="sr-only">Rules</caption> > <thead> > <tr> > <th> </th> >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 2bc746507c..9c69f5b311 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 >@@ -70,6 +70,7 @@ > </fieldset> > > <table id="problemreportstable"> >+ <caption class="sr-only">Problem reports</caption> > <thead> > <tr> > <th class="NoSort"> </th> >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 299480b6e1..306b8bbe82 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 >@@ -76,6 +76,7 @@ > </div> > </fieldset> > <table id="quotes_editor" style="visibility: hidden;"> >+ <caption class="sr-only">Quotes editor</caption> > <thead> > <tr> > <th>Source</th> >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 a4a3b87878..62d1fba37b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >@@ -104,6 +104,7 @@ > <h1>Quotes</h1> > [% IF quotes_count > 0 %] > <table id="quotes"> >+ <caption class="sr-only">Quotes</caption> > <thead> > <tr> > <th>ID</th> >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 775e68ca47..c1c5f051c5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/scheduler.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/scheduler.tt >@@ -76,8 +76,9 @@ > <fieldset class="action"><input class="submit-button" type="submit" value="Save" /></fieldset> > </form> > >-[% IF ( JOBS ) %]<h2>Jobs already entered</h2> >+[% IF ( JOBS ) %] > <table> >+<caption>Jobs already entered</caption> > <tr> > <th>Date/Time</th> > <th>Action</th> >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 b73d736f10..bc27126999 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt >@@ -99,6 +99,7 @@ > > [% IF existing_rotas.size > 0 %] > <table id="stock_rotation" class="rotas_table" role="grid"> >+ <caption class="sr-only">Stock rotation</caption> > <thead> > <tr> > <th class="anti-the">Name</th> >@@ -438,6 +439,7 @@ > > [% IF items.count > 0 %] > <table id="stock_rotation_manage_items" class="items_table" role="grid"> >+ <caption class="sr-only">Stock rotation manage items</caption> > <thead> > <tr> > <th>Barcode</th> >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 e61e82d81d..b70df90fb0 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt >@@ -191,6 +191,7 @@ > > [% BLOCK table_results %] > <table id="uploadresults"> >+ <caption class="sr-only">Upload results</caption> > <thead> > <tr> > <th>Filename</th> >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 e870276099..0dfef56fb9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >@@ -303,6 +303,7 @@ > <button class="btn btn-link disabled compare_link"><i class="fa fa-columns"></i> Compare selected</button> > </div> > <table id="logst"> >+ <caption class="sr-only">Logs</caption> > <thead> > <tr> > <th>Date</th> >-- >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 28243
:
121750
|
121895
|
121896
|
121898
|
121899
|
121900
|
121901
|
121902
|
121903
|
121904
|
121905
|
121942
|
121943
|
121944
|
121945
|
121946
|
121947
|
121948
|
121949
|
121950
|
121956
|
121957
|
121958
|
121959
|
121973
|
121974
| 122019 |
122020
|
122021