TINKERING
WITH
TEMPLATES
Creating Report-Driven Tools and Interfaces
koha-US Conference ★ Round Rock, Texas ★ August 14, 2024
Jason Robb - Southeast Kansas Library System
OBLIGATORY KANSAS KOHA MAP SLIDE
Northwest
Southwest
Central
South Central
Southeast
Northeast
North
Central
NorCat
State Library Cards
Add ability to render a report using a notice template
01 - SQL
02 - TEMPLATE
03 - UI/UX CONSIDERATIONS
COMPONENTS
SQL
[% FOREACH b IN data %]
<div> [% b.stuff %] and [% b.junk %] </div>
[% END %]
TEMPLATES
[% FOREACH b IN data %]
<div> [% b.stuff %] and [% b.junk %] <div>
[% END %]
F Roberts and 35323000108980
Pbk F Silver and 35331000000164
F Roberts and 35318000011727
J523.8 Thompson and 35328000000012
SQL + TEMPLATES =
1
2
3
4
5
6
7
8
9
10
11
12
UI/UX CONSIDERATIONS
PROJECT #1:
Printable insert for kits
SELECT i.itemcallnumber, b.title, bi.pages, CONCAT(
'<img src="/cgi-bin/koha/svc/barcode?barcode=',
CONCAT('A', i.barcode, 'A'),
'&type=NW7¬ext=1',
'"></img>') AS bcodepic, i.barcode as bcodetext
FROM items i
LEFT JOIN biblio b USING (biblionumber)
LEFT JOIN biblioitems bi USING (biblionumber)
WHERE i.barcode = <<Barcode>>
SQL
PROJECT #1:
Printable insert for kits
Template
PROJECT #1:
Printable insert for kits
UI/UX
PROJECT #1:
Printable insert for kits
PROJECT #2:
Print overdue notices
Code
PROJECT #2:
Print overdue notices
UI/UX
PROJECT #2:
Print overdue notices
PROJECT #3:
Stats infographic/dashboard
Code
PROJECT #3:
Stats infographic/dashboard�(this is more of a proof of concept, definitely needs more work)
Highlights
PROJECT #3:
Stats infographic/dashboard
Font Awesome icons
Contextual info
Charting with Charts.css
(open source CSS framework)
Cover image via Amazon
Display shelf poster
PROJECT #4:
?
Staff picks
PROJECT #5:
QUESTIONS
Jason Robb - SEKnFind Coordinator - SEKLS
RESOURCES
These slides:
Jason Robb - SEKnFind Coordinator - SEKLS