[Bug 32507] New: Use template wrapper to build breadcrumb navigation
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Bug ID: 32507 Summary: Use template wrapper to build breadcrumb navigation Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Templates Assignee: oleonard@myacpl.org Reporter: oleonard@myacpl.org QA Contact: testopia@bugs.koha-community.org In preparation for an upgrade to Bootstrap 5 I propose that we try to abstract the way we build some components. This will help reduce the number of template changes required during the update. Using Template::Toolkit WRAPPER we can create the main structure for breadcrumbs, currently: <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> <ol class="breadcrumb"> ... </ol> </nav> And also a structure for each navigation item: <li class="breadcrumb-item"> ... </li> This can be done gradually before the Bootstrap upgrade without causing any disruption. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 --- Comment #1 from Owen Leonard <oleonard@myacpl.org> --- Created attachment 144742 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=144742&action=edit Bug 32507: Use template wrapper to build breadcrumb navigation This patch lays the groundwork for updating the way we build breadcrumb navigation on each page, and implements it on the cities administration page as a proof of concept. The page creates two blocks, 'breadcrumbs' and 'breadcrumb_item' 'breadcrumbs' builds the outer structure of the menu, currently: <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> <ol class="breadcrumb"> It automatically adds the "Home" link which appears on all pages. The 'breadcrumb_item' block builds the list item which contains the individual link. To test, apply the patch and go to Administration -> Cities & towns. On each variation of the page, check the breadcrumbs menu: - On the initial summary view it should be: Home -> Administration -> Cities - Click "New city" and the menu should be: Home -> Administration -> Cities -> New city - When you edit a city: Home -> Administration -> Cities -> Modify city - When you delete a city: Home -> Administration -> Cities -> Confirm deletion of city -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook@prosentient.com.au -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #144742|0 |1 is obsolete| | --- Comment #2 from David Nind <david@davidnind.com> --- Created attachment 144754 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=144754&action=edit Bug 32507: Use template wrapper to build breadcrumb navigation This patch lays the groundwork for updating the way we build breadcrumb navigation on each page, and implements it on the cities administration page as a proof of concept. The page creates two blocks, 'breadcrumbs' and 'breadcrumb_item' 'breadcrumbs' builds the outer structure of the menu, currently: <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> <ol class="breadcrumb"> It automatically adds the "Home" link which appears on all pages. The 'breadcrumb_item' block builds the list item which contains the individual link. To test, apply the patch and go to Administration -> Cities & towns. On each variation of the page, check the breadcrumbs menu: - On the initial summary view it should be: Home -> Administration -> Cities - Click "New city" and the menu should be: Home -> Administration -> Cities -> New city - When you edit a city: Home -> Administration -> Cities -> Modify city - When you delete a city: Home -> Administration -> Cities -> Confirm deletion of city Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 --- Comment #3 from Owen Leonard <oleonard@myacpl.org> --- Created attachment 145070 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=145070&action=edit Bug 32507: (follow-up) Change parameter name to avoid collisions The variable name "active" is very likely to already be set for other reasons, so changing the parameter name to "bc_active" to avoid problems. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #144754|0 |1 is obsolete| | --- Comment #4 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- Created attachment 145147 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=145147&action=edit Bug 32507: Use template wrapper to build breadcrumb navigation This patch lays the groundwork for updating the way we build breadcrumb navigation on each page, and implements it on the cities administration page as a proof of concept. The page creates two blocks, 'breadcrumbs' and 'breadcrumb_item' 'breadcrumbs' builds the outer structure of the menu, currently: <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> <ol class="breadcrumb"> It automatically adds the "Home" link which appears on all pages. The 'breadcrumb_item' block builds the list item which contains the individual link. To test, apply the patch and go to Administration -> Cities & towns. On each variation of the page, check the breadcrumbs menu: - On the initial summary view it should be: Home -> Administration -> Cities - Click "New city" and the menu should be: Home -> Administration -> Cities -> New city - When you edit a city: Home -> Administration -> Cities -> Modify city - When you delete a city: Home -> Administration -> Cities -> Confirm deletion of city Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #145070|0 |1 is obsolete| | --- Comment #5 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- Created attachment 145148 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=145148&action=edit Bug 32507: (follow-up) Change parameter name to avoid collisions The variable name "active" is very likely to already be set for other reasons, so changing the parameter name to "bc_active" to avoid problems. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize@ptfs-europe | |.com Status|Signed Off |Passed QA --- Comment #6 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- Works for me, saves a few lines and is a good example of using the TT WRAPPER directive. Passing QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen@gmail.com Status|Passed QA |Patch doesn't apply --- Comment #7 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Conflict, please rebase. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Passed QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #145147|0 |1 is obsolete| | Attachment #145148|0 |1 is obsolete| | --- Comment #8 from Owen Leonard <oleonard@myacpl.org> --- Created attachment 146400 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=146400&action=edit Bug 32507: Use template wrapper to build breadcrumb navigation This patch lays the groundwork for updating the way we build breadcrumb navigation on each page, and implements it on the cities administration page as a proof of concept. The page creates two blocks, 'breadcrumbs' and 'breadcrumb_item' 'breadcrumbs' builds the outer structure of the menu, currently: <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> <ol class="breadcrumb"> It automatically adds the "Home" link which appears on all pages. The 'breadcrumb_item' block builds the list item which contains the individual link. To test, apply the patch and go to Administration -> Cities & towns. On each variation of the page, check the breadcrumbs menu: - On the initial summary view it should be: Home -> Administration -> Cities - Click "New city" and the menu should be: Home -> Administration -> Cities -> New city - When you edit a city: Home -> Administration -> Cities -> Modify city - When you delete a city: Home -> Administration -> Cities -> Confirm deletion of city Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 --- Comment #9 from Owen Leonard <oleonard@myacpl.org> --- Created attachment 146401 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=146401&action=edit Bug 32507: (follow-up) Change parameter name to avoid collisions The variable name "active" is very likely to already be set for other reasons, so changing the parameter name to "bc_active" to avoid problems. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |23.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 --- Comment #10 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Pushed to master for 23.05. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |32973 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32973 [Bug 32973] Use template wrapper for breadcrumbs: about, main, and error page -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pedro.amorim@ptfs-europe.co | |m --- Comment #11 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- This will not be pushed to 22.11.x for now. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33000 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33000 [Bug 33000] Use template wrapper for breadcrumbs: Acquisitions part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33001 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33001 [Bug 33001] Use template wrapper for breadcrumbs: Acquisitions part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33005 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33005 [Bug 33005] Use template wrapper for breadcrumbs: Acquisitions part 3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33006 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33006 [Bug 33006] Use template wrapper for breadcrumbs: Administration part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33007 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33007 [Bug 33007] Use template wrapper for breadcrumbs: Administration part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|33007 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33007 [Bug 33007] Use template wrapper for breadcrumbs: Administration part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33068 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33068 [Bug 33068] Use template wrapper for breadcrumbs: Administration part 3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33071 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33071 [Bug 33071] Show tooltip when hovering on home icon in staff interface breadcrumbs -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33111 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33111 [Bug 33111] Use template wrapper for breadcrumbs: Administration part 4 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|23.05.00 |23.05.00,22.11.04 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 --- Comment #12 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- Many hands makes light work, thankyou everyone! Pushed to 22.11.x for the next release -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 --- Comment #13 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- Backported to support future maintanence.. and we pushed bug 32973 which depends upon it so needed to push this too. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |Architectural enhancement release notes| |in preparation for | |bootstrap 5 upgrade. This | |patch adds the foundations | |for abstracting the | |breadcrumb component of the | |staff client. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33127 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33127 [Bug 33127] Use template wrapper for breadcrumbs: Administration part 5 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33129 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33129 [Bug 33129] Use template wrapper for breadcrumbs: Administration part 6 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33130 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33130 [Bug 33130] Use template wrapper for breadcrumbs: Authorities -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33131 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33131 [Bug 33131] Use template wrapper for breadcrumbs: Catalog part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33147 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33147 [Bug 33147] Use template wrapper for breadcrumbs: Catalog part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33148 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33148 [Bug 33148] Use template wrapper for breadcrumbs: Cataloging -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33149 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33149 [Bug 33149] Use template wrapper for breadcrumbs: Circulation part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Lucas Gass <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED CC| |lucas@bywatersolutions.com --- Comment #14 from Lucas Gass <lucas@bywatersolutions.com> --- Will not be backported to 22.05.x -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33372 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33372 [Bug 33372] Use template wrapper for breadcrumbs: Circulation part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33373 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33373 [Bug 33373] Use template wrapper for breadcrumbs: Circulation part 3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33382 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33382 [Bug 33382] Use template wrapper for breadcrumbs: Patron clubs -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33383 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33383 [Bug 33383] Use template wrapper for breadcrumbs: Course reserves -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33384 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33384 [Bug 33384] Use template wrapper for breadcrumbs: Labels -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33385 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33385 [Bug 33385] Use template wrapper for breadcrumbs: Patrons part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33386 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33386 [Bug 33386] Use template wrapper for breadcrumbs: Patrons part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33387 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33387 [Bug 33387] Use template wrapper for breadcrumbs: Patrons part 3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33388 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33388 [Bug 33388] Use template wrapper for breadcrumbs: Patrons part 4 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33389 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33389 [Bug 33389] Use template wrapper for breadcrumbs: Patrons part 5 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33409 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33409 [Bug 33409] Use template wrapper for breadcrumbs: Patrons lists -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33410 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33410 [Bug 33410] Use template wrapper for breadcrumbs: Patron card creator -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33429 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33429 [Bug 33429] Use template wrapper for breadcrumbs: Plugins -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33434 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33434 [Bug 33434] Use template wrapper for breadcrumbs: Point of sale -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33436 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33436 [Bug 33436] Use template wrapper for breadcrumbs: Reports part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33437 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33437 [Bug 33437] Use template wrapper for breadcrumbs: Reports part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33438 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33438 [Bug 33438] Use template wrapper for breadcrumbs: Reports part 3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33439 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33439 [Bug 33439] Use template wrapper for breadcrumbs: Reports part 4 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33555 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33555 [Bug 33555] Use template wrapper for breadcrumbs: Rotating collections -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33558 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33558 [Bug 33558] Use template wrapper for breadcrumbs: Serials part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33559 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33559 [Bug 33559] Use template wrapper for breadcrumbs: Serials part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33564 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33564 [Bug 33564] Use template wrapper for breadcrumbs: Serials part 3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33565 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33565 [Bug 33565] Use template wrapper for breadcrumbs: Tags -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33566 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33566 [Bug 33566] Use template wrapper for breadcrumbs: Tools, part 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33571 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33571 [Bug 33571] Use template wrapper for breadcrumbs: Tools, part 2 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33572 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33572 [Bug 33572] Use template wrapper for breadcrumbs: Tools, part 3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33582 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33582 [Bug 33582] Use template wrapper for breadcrumbs: Tools, part 4 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33598 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33598 [Bug 33598] Use template wrapper for breadcrumbs: Tools, part 5 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33599 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33599 [Bug 33599] Use template wrapper for breadcrumbs: Tools, part 6 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33600 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33600 [Bug 33600] Use template wrapper for breadcrumbs: Tools, part 7 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |33601 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33601 [Bug 33601] Use template wrapper for breadcrumbs: Tools, part 8 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=11113 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also|https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=11113 | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=34849 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36945 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36945 [Bug 36945] Fix several missed instance of breadcrumb WRAPPER use -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |37030 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37030 [Bug 37030] Use template wrapper for breadcrumbs: Cash register stats -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32507 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|37030 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37030 [Bug 37030] Use template wrapper for breadcrumbs: Cash register stats -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org