aboutsummaryrefslogtreecommitdiff
path: root/library_info_cli.py
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-07-13 16:23:06 -0400
committerB. Stack <bgstack15@gmail.com>2024-07-13 16:23:06 -0400
commitc6ec4dd41d1b9569f5b37ee263c4d747c47e188e (patch)
treef8e76d74522c8aebe36674769951aca04c2aaf12 /library_info_cli.py
parentupdate cron-run script to use separate images for html (diff)
downloadlibrary-info-c6ec4dd41d1b9569f5b37ee263c4d747c47e188e.tar.gz
library-info-c6ec4dd41d1b9569f5b37ee263c4d747c47e188e.tar.bz2
library-info-c6ec4dd41d1b9569f5b37ee263c4d747c47e188e.zip
all libraries: collect card expiry date
Diffstat (limited to 'library_info_cli.py')
-rwxr-xr-xlibrary_info_cli.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/library_info_cli.py b/library_info_cli.py
index 1de3cf3..cf80043 100755
--- a/library_info_cli.py
+++ b/library_info_cli.py
@@ -64,6 +64,7 @@ def html_td_img(i, imagepath, imagerelativepath):
return "<td>none</td>"
def html(checkouts, reservations, imagepath, imagerelativepath):
+ # WORKHERE: need to revise this to take a list of config entries to load, so we can collect card expiration info
"""
Make a pretty html page of the items. If imagepath and imagerelativepath are defined, save the images to imagepath, and set the html img tags src attribute to the imagerelativepath.
"""
bgstack15