Compare commits

..

No commits in common. "ec359b924e93fbccb703a3c111f95137d976f76c" and "d79b734f2f29a77543b7e05d05a5b08790d7517c" have entirely different histories.

View File

@ -207,7 +207,7 @@ returntable += tablestart + '<colgroup><col/><col/></colgroup><tr><th>Name'+ th
for account in accounts:
accountcount = sum(b.person == account.name for b in allbooks)
if accountcount >0:
returntable += "<tr><td>" + account.name + td + str(accountcount) + "</td></tr>"
returntable += "<tr><td>" + account.person + td + str(accountcount) + "</td></tr>"
duesoon = [d for d in allbooks if (d.duedate < datetime.date.today() + datetime.timedelta(days=10)) and not (str(d.renewresult).lower() == 'None'.lower())]
if len(duesoon) >=1:
returntable += tablestart + '<colgroup><col/><col/></colgroup><tr><th>Type'+ th +'Count</th></tr>'